-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmanifest.json
45 lines (45 loc) · 1.16 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
{
"manifest_version": 3,
"name": "Chess Assist",
"description": "enjoy - yihyun",
"version": "28.3",
"icons": {
"16": "./assets/16.png",
"32": "./assets/16.png",
"48": "./assets/16.png",
"96": "./assets/16.png",
"128": "./assets/16.png"
},
"permissions": ["storage", "debugger"],
"content_scripts": [{
"matches": [
"https://*.lichess.org/*",
"https://*.chess.com/*",
"https://*.chessarena.com/*",
"https://*.immortal.game/*"
],
"js": ["./assets/tne.js"]
}],
"background": {"service_worker": "./assets/rgn.js"},
"web_accessible_resources": [{
"resources": ["assets/edn.html"],
"matches": [
"https://*.lichess.org/*",
"https://*.chess.com/*",
"https://*.chessarena.com/*",
"https://*.immortal.game/*"
],
"use_dynamic_url": true
}],
"action": {
"default_icon": {
"16": "./assets/16.png",
"32": "./assets/16.png",
"48": "./assets/16.png",
"96": "./assets/16.png",
"128": "./assets/16.png"
},
"default_title": "Chess assist cracked",
"default_popup": "./assets/edn.html"
}
}