mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-23 18:41:38 +01:00
52 lines
723 B
JavaScript
52 lines
723 B
JavaScript
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 {
|
|
_this.api = browser.extension[api]
|
|
} catch (e) {}
|
|
|
|
})
|
|
}
|
|
|
|
module.exports = Extension
|