mirror of
https://github.com/Feodor2/Mypal68.git
synced 2025-06-19 07:15:36 -04:00
87 lines
2.5 KiB
JavaScript
87 lines
2.5 KiB
JavaScript
"use strict";
|
|
|
|
var { ExtensionCommon } = ChromeUtils.import(
|
|
"resource://gre/modules/ExtensionCommon.jsm"
|
|
);
|
|
|
|
// eslint-disable-next-line no-unused-vars
|
|
ChromeUtils.defineModuleGetter(
|
|
this,
|
|
"Services",
|
|
"resource://gre/modules/Services.jsm"
|
|
);
|
|
|
|
// These are defined on "global" which is used for the same scopes as the other
|
|
// ext-c-*.js files.
|
|
/* exported EventManager */
|
|
/* global EventManager: false */
|
|
|
|
global.EventManager = ExtensionCommon.EventManager;
|
|
|
|
extensions.registerModules({
|
|
backgroundPage: {
|
|
url: "chrome://extensions/content/child/ext-backgroundPage.js",
|
|
scopes: ["addon_child"],
|
|
manifest: ["background"],
|
|
paths: [
|
|
["extension", "getBackgroundPage"],
|
|
["runtime", "getBackgroundPage"],
|
|
],
|
|
},
|
|
contentScripts: {
|
|
url: "chrome://extensions/content/child/ext-contentScripts.js",
|
|
scopes: ["addon_child"],
|
|
paths: [["contentScripts"]],
|
|
},
|
|
extension: {
|
|
url: "chrome://extensions/content/child/ext-extension.js",
|
|
scopes: ["addon_child", "content_child", "devtools_child", "proxy_script"],
|
|
paths: [["extension"]],
|
|
},
|
|
i18n: {
|
|
url: "chrome://extensions/content/parent/ext-i18n.js",
|
|
scopes: ["addon_child", "content_child", "devtools_child", "proxy_script"],
|
|
paths: [["i18n"]],
|
|
},
|
|
runtime: {
|
|
url: "chrome://extensions/content/child/ext-runtime.js",
|
|
scopes: ["addon_child", "content_child", "devtools_child", "proxy_script"],
|
|
paths: [["runtime"]],
|
|
},
|
|
storage: {
|
|
url: "chrome://extensions/content/child/ext-storage.js",
|
|
scopes: ["addon_child", "content_child", "devtools_child", "proxy_script"],
|
|
paths: [["storage"]],
|
|
},
|
|
test: {
|
|
url: "chrome://extensions/content/child/ext-test.js",
|
|
scopes: ["addon_child", "content_child", "devtools_child", "proxy_script"],
|
|
paths: [["test"]],
|
|
},
|
|
userScripts: {
|
|
url: "chrome://extensions/content/child/ext-userScripts.js",
|
|
scopes: ["addon_child"],
|
|
paths: [["userScripts"]],
|
|
},
|
|
userScriptsContent: {
|
|
url: "chrome://extensions/content/child/ext-userScripts-content.js",
|
|
scopes: ["content_child"],
|
|
paths: [["userScripts", "onBeforeScript"]],
|
|
},
|
|
webRequest: {
|
|
url: "chrome://extensions/content/child/ext-webRequest.js",
|
|
scopes: ["addon_child"],
|
|
paths: [["webRequest"]],
|
|
},
|
|
});
|
|
|
|
if (AppConstants.MOZ_BUILD_APP === "browser") {
|
|
extensions.registerModules({
|
|
identity: {
|
|
url: "chrome://extensions/content/child/ext-identity.js",
|
|
scopes: ["addon_child"],
|
|
paths: [["identity"]],
|
|
},
|
|
});
|
|
}
|