const apis = [ 'alarms', 'bookmarks', 'browserAction', 'commands', 'contextMenus', 'cookies', 'downloads', 'events', 'extension', 'extensionTypes', 'history', 'i18n', 'idle', 'notifications', 'pageAction', 'runtime', 'storage', 'tabs', 'webNavigation', 'webRequest', 'windows', ] function Extension () { const _this = this apis.forEach(function (api) { _this[api] = null try { if (chrome[api]) { _this[api] = chrome[api] } } catch (e) {} try { if (window[api]) { _this[api] = window[api] } } catch (e) {} try { if (browser[api]) { _this[api] = browser[api] } } catch (e) {} try { _this.api = browser.extension[api] } catch (e) {} }) try { if (browser && browser.runtime) { this.runtime = browser.runtime } } catch (e) {} try { if (browser && browser.browserAction) { this.browserAction = browser.browserAction } } catch (e) {} } module.exports = Extension sd-ports-gnome/'>freebsd-ports-gnome
FreeBSD GNOME current development ports (https://github.com/freebsd/freebsd-ports-gnome)
aboutsummaryrefslogtreecommitdiffstats
path: root/lang/ldc
Commit message (Expand)AuthorAgeFilesLines
* One more small cleanup, forgotten yesterday.Mathieu Arnold2021-04-071-1/+0
* Remove # $FreeBSD$ from Makefiles.Mathieu Arnold2021-04-061-1/+0
* Mark as BROKEN on riscv64.Mark Linimon2021-01-131-0/+1
* Fix patchMikael Urankar2020-11-151-2/+2
* lang/ldc: fix build on aarch64Mikael Urankar2020-11-154-0/+117