-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdocs.js
25 lines (21 loc) · 911 Bytes
/
docs.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
// Inject docs-injected
const injectedScript = document.createElement('script');
injectedScript.src = chrome.runtime.getURL('docs-injected.js');
(document.head || document.documentElement).prepend(injectedScript);
// Refresh page on change of cleartype setting
// otherwise, document would disappear when changing that setting
var lastEnableSubpixel;
function checkOptions() {
function checkSubpixel(result) {
let newEnableSubpixel = result.subpixel == null ? true : result.subpixel;
if (lastEnableSubpixel == null) lastEnableSubpixel = newEnableSubpixel;
else if (lastEnableSubpixel != newEnableSubpixel) location.reload();
}
let spgetting = browser.storage.sync.get("subpixel");
spgetting.then(checkSubpixel, onError);
}
checkOptions();
function onError(error) {
console.log(`BDD Options Error: ${error}`);
}
browser.storage.onChanged.addListener(checkOptions);