-
Notifications
You must be signed in to change notification settings - Fork 2
/
manifest.json
47 lines (41 loc) · 1018 Bytes
/
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
{
"name": "teto-minus",
"description": "aeaeaeae",
"version": "2.0.0",
"manifest_version": 3,
"author": "RedStone576",
"icons": {
"128": "res/default/128.png"
},
"action": {
"default_icon" : {
"128": "res/default/128.png"
}
},
"background": {
"service_worker": "src/background.js"
},
"content_scripts": [{
"matches": ["https://tetr.io/*"],
"js": ["./src/index.js"],
"run_at": "document_start"
}],
"web_accessible_resources": [{
"matches": ["https://tetr.io/*"],
"resources": [
"/src/config.json",
"/src/**/*.js",
"/src/**/*.css",
"/src/pages/editor/*",
"/res/**/*"
]
}],
"host_permissions": ["*://tetr.io/*"],
"permissions": [
"tabs",
"declarativeNetRequest",
"declarativeNetRequestFeedback",
"storage",
"unlimitedStorage"
]
}