forked from chinchang/web-maker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patheventPage.js
49 lines (45 loc) · 1.04 KB
/
eventPage.js
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
46
47
48
49
function openApp() {
chrome.tabs.create({
url: chrome.extension.getURL('index.html'),
selected: true
});
}
chrome.browserAction.onClicked.addListener(function() {
openApp();
});
// Listen for tabs getting created.
chrome.tabs.onCreated.addListener(function(tab) {
// If a new tab is opened (without any URL), check user's
// replace Tab setting and act accordingly. Default is false.
if (tab.url === 'chrome://newtab/') {
chrome.storage.sync.get(
{
replaceNewTab: false
},
function(items) {
if (items.replaceNewTab) {
chrome.tabs.update(
tab.id,
{
url: chrome.extension.getURL('index.html')
},
function callback() {
console.log('ho gaya');
}
);
}
}
);
}
});
chrome.runtime.onInstalled.addListener(function callback(details) {
if (details.reason === 'install') {
openApp();
}
if (details.reason === 'update') {
if ((details.previousVersion + '').indexOf('1.') === 0) {
openApp();
}
}
});
chrome.runtime.setUninstallURL('https://webmakerapp.com/uninstall/');