gecko-dev/toolkit/components/extensions/child/ext-toolkit.js
Rob Wu 15cb125878 Bug 1911833 - Add MV3 userScripts namespace, separate from MV2 r=zombie
- Add "userScripts" permission for MV3.

- Add "userScripts" namespace for MV3, and add schema and logic to make
  sure that this namespace is limited to MV3 only.

- Add tests to verify that the "userScripts" namespace of MV2 and MV3
  are completely isolated.

- The functionality in this patch is limited to verifying that the API
  bindings and permission requirement works; the rest of the
  implementation will follow in the next patches.

Depends on D223016

Differential Revision: https://phabricator.services.mozilla.com/D222492
2024-11-20 16:50:12 +00:00

84 lines
2.5 KiB
JavaScript

/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this file,
* You can obtain one at http://mozilla.org/MPL/2.0/. */
"use strict";
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"]],
},
declarativeNetRequest: {
url: "chrome://extensions/content/child/ext-declarativeNetRequest.js",
scopes: ["addon_child"],
paths: [["declarativeNetRequest"]],
},
extension: {
url: "chrome://extensions/content/child/ext-extension.js",
scopes: ["addon_child", "content_child", "devtools_child"],
paths: [["extension"]],
},
i18n: {
url: "chrome://extensions/content/parent/ext-i18n.js",
scopes: ["addon_child", "content_child", "devtools_child"],
paths: [["i18n"]],
},
runtime: {
url: "chrome://extensions/content/child/ext-runtime.js",
scopes: ["addon_child", "content_child", "devtools_child"],
paths: [["runtime"]],
},
scripting: {
url: "chrome://extensions/content/child/ext-scripting.js",
scopes: ["addon_child"],
paths: [["scripting"]],
},
storage: {
url: "chrome://extensions/content/child/ext-storage.js",
scopes: ["addon_child", "content_child", "devtools_child"],
paths: [["storage"]],
},
test: {
url: "chrome://extensions/content/child/ext-test.js",
scopes: ["addon_child", "content_child", "devtools_child"],
paths: [["test"]],
},
userScripts: {
url: "chrome://extensions/content/child/ext-userScripts.js",
scopes: ["addon_child"],
paths: [["userScripts", "register"]],
},
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"]],
},
});
}