-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
48 lines (48 loc) · 1.11 KB
/
manifest.json
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
{
"manifest_version": 3,
"name": "__MSG_extName__",
"description": "__MSG_extDesc__",
"default_locale": "en",
"author": "Raz1ner",
"version": "1.0.4",
"action": {
"default_icon": "img/icon.png"
},
"icons": {
"128": "img/icon.png"
},
"background": {
"service_worker": "js/background.js"
},
"content_scripts": [
{
"matches": ["https://dev-coco.github.io/Extension/Background-Color-Post/*"],
"js": ["js/extID.js"]
}
],
"externally_connectable": {
"matches": ["https://dev-coco.github.io/Extension/Background-Color-Post/*"]
},
"web_accessible_resources": [{
"resources": ["js/inject.js"],
"matches": ["https://dev-coco.github.io/*"]
}],
"declarative_net_request": {
"rule_resources": [
{
"id": "ruleset_1",
"enabled": true,
"path": "rules.json"
}
]
},
"permissions": [
"cookies",
"storage",
"declarativeNetRequest"
],
"host_permissions": [
"https://*.facebook.com/*",
"https://dev-coco.github.io/Extension/Background-Color-Post/*"
]
}