summaryrefslogtreecommitdiffstats
path: root/comm/mail/components/extensions/child/ext-mail.js
blob: 4c85692f9167ec3a79a4ed7a134389bbdab204db (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
/* 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";

extensions.registerModules({
  extensionScripts: {
    url: "chrome://messenger/content/child/ext-extensionScripts.js",
    scopes: ["addon_child"],
    paths: [["composeScripts"], ["messageDisplayScripts"]],
  },
  identity: {
    url: "chrome://extensions/content/child/ext-identity.js",
    scopes: ["addon_child"],
    paths: [["identity"]],
  },
  menus: {
    url: "chrome://messenger/content/child/ext-menus.js",
    scopes: ["addon_child"],
    paths: [["menus"]],
  },
  tabs: {
    url: "chrome://messenger/content/child/ext-tabs.js",
    scopes: ["addon_child"],
    paths: [["tabs"]],
  },
});