-
Notifications
You must be signed in to change notification settings - Fork 0
/
background.js
34 lines (27 loc) · 890 Bytes
/
background.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
chrome.runtime.onInstalled.addListener(function()
{
chrome.declarativeContent.onPageChanged.removeRules(undefined, function()
{
chrome.declarativeContent.onPageChanged.addRules([
{
conditions:
[
// new chrome.declarativeContent.PageStateMatcher({
// pageUrl: {hostEquals: 'developer.chrome.com'},
// }),
// new chrome.declarativeContent.PageStateMatcher({
// pageUrl: {hostContains: 'google.com'},
// }),
new chrome.declarativeContent.PageStateMatcher({
pageUrl: {hostContains: 'www'},
}),
new chrome.declarativeContent.PageStateMatcher({
pageUrl: {hostContains: 'co'},
})
],
actions: [new chrome.declarativeContent.ShowPageAction()]
}
]);
});
// chrome.browserAction.setBadgeText({text:"12"});
});