-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbackground.js
44 lines (36 loc) · 1 KB
/
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
35
36
37
38
39
40
41
42
43
44
if (typeof browser == 'undefined') {
globalThis.browser = chrome;
}
const defaultConfig = {
verbose: false,
isActive: true,
isBlockAd: true,
isRestartAfterConfigChanged: false,
blockedKeywords: [
// shopee
'shope',
'shoope',
// tokopedia
'tokopedia',
// other keywords
'vcs',
],
// dependent to data above
_rgxBlocked: undefined, // default
};
const DB_KEY_CONFIG = 'config';
const requiredPermissions = {
origins: ['https://x.com/*'],
permissions: ['storage'],
};
// On install
browser?.runtime?.onInstalled?.addListener(async () => {
// Request host permissions
const hasPermissions = await browser?.permissions?.contains(requiredPermissions);
if (!hasPermissions) browser?.permissions?.request(requiredPermissions);
// Set default config upon install
const storageResult = await browser?.storage?.sync?.get(DB_KEY_CONFIG);
if (!storageResult?.hasOwnProperty(DB_KEY_CONFIG)) {
browser?.storage?.sync?.set({ [DB_KEY_CONFIG]: defaultConfig });
}
});