-
-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Expand file tree
/
Copy pathbackground.js
More file actions
45 lines (41 loc) · 1.55 KB
/
background.js
File metadata and controls
45 lines (41 loc) · 1.55 KB
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
// Copyright (c) 2018 Carol Chen
//
// This program is free software; you can redistribute it and/or
// modify it under the terms of the The GNU Affero General Public
// License as published by the Free Software Foundation; either
// version 3 of the License, or (at your option) any later version.
//
// You should have received a copy of the GNU Affero General Public
// License along with this library; if not, write to the Free Software
// Foundation, 51 Franklin Street, Suite 500 Boston, MA 02110-1335 USA
/*
global browser, chrome
*/
if (navigator.userAgent.search("Firefox") !== -1) {
// eslint-disable-next-line no-unused-vars
browser.browserAction.onClicked.addListener(tab => {
browser.tabs.create({ url: "index.html" });
});
// eslint-disable-next-line no-unused-vars
browser.runtime.onInstalled.addListener(details => {
browser.tabs.create({ url: "index.html" });
});
} else {
// eslint-disable-next-line no-unused-vars
chrome.browserAction.onClicked.addListener(tab => {
window.open(chrome.runtime.getURL("index.html"));
});
// eslint-disable-next-line no-unused-vars
chrome.runtime.onInstalled.addListener(details => {
window.open(chrome.runtime.getURL("index.html"));
});
}
if (typeof module !== "undefined" && module.exports) {
module.exports = {
isFirefox: navigator.userAgent.search("Firefox") !== -1,
browserAction:
navigator.userAgent.search("Firefox") !== -1
? browser.browserAction
: chrome.browserAction
};
}