-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathbackground.js
More file actions
25 lines (20 loc) · 878 Bytes
/
background.js
File metadata and controls
25 lines (20 loc) · 878 Bytes
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
chrome.runtime.onInstalled.addListener(function () {
chrome.storage.sync.set({ isVisible: { key: 'a', keyCode: 97 } }, function () {
});
chrome.storage.sync.set({ disableBubble: { key: 's', keyCode: 115 } }, function () {
});
chrome.storage.sync.set({ persistent: { persistVisual: true } }, function () {
});
chrome.storage.sync.set({ bubbleCursor: {enabled : true} }, function () {
});
chrome.tabs.create({ url: "options.html" }, function (tab) { });
chrome.declarativeContent.onPageChanged.removeRules(undefined, function () {
chrome.declarativeContent.onPageChanged.addRules([{
conditions: [new chrome.declarativeContent.PageStateMatcher({
pageUrl: { urlMatches: '.' },
})
],
actions: [new chrome.declarativeContent.ShowPageAction()]
}]);
});
});