-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathbackground.js
More file actions
23 lines (16 loc) · 879 Bytes
/
background.js
File metadata and controls
23 lines (16 loc) · 879 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
(async () => {
messenger.WindowListener.registerDefaultPrefs("defaults/preferences/tbdialout.js");
messenger.WindowListener.registerChromeUrl([
["content", "tbdialout", "chrome/content/"],
["resource", "tbdialout", "chrome/"]
]);
messenger.WindowListener.registerOptionsPage("chrome://tbdialout/content/options.xhtml");
messenger.WindowListener.registerWindow(
"chrome://messenger/content/addressbook/addressbook.xhtml",
"chrome://tbdialout/content/scripts/addressbook.js");
messenger.WindowListener.registerWindow(
"chrome://messenger/content/customizeToolbar.xhtml",
"chrome://tbdialout/content/scripts/toolbar.js");
//messenger.WindowListener.registerShutdownScript("chrome://tbdialout/content/scripts/shutdown.js");
messenger.WindowListener.startListening();
})()