-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmanifest.json
59 lines (59 loc) · 1.48 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
49
50
51
52
53
54
55
56
57
58
59
{
"update_url": "https://clients2.google.com/service/update2/crx",
"manifest_version": 3,
"name": "Mephisto Chess Extension",
"description": "Next best move analysis for your favorite chess websites",
"version": "1.0.2",
"homepage_url": "https://github.com/AlexPetrusca/Mephisto",
"author": "Alex Petrusca",
"icons": {
"16": "res/icons/icon16.png",
"32": "res/icons/icon32.png",
"48": "res/icons/icon48.png",
"128": "res/icons/icon128.png"
},
"action": {
"default_icon": {
"16": "res/icons/icon16.png",
"32": "res/icons/icon32.png",
"48": "res/icons/icon48.png",
"128": "res/icons/icon128.png"
},
"default_popup": "src/popup/popup.html",
"options_page": "src/options/options.html"
},
"permissions": [
"debugger"
],
"background": {
"service_worker": "src/scripts/background-script.js"
},
"content_scripts": [
{
"matches": [
"*://www.chess.com/*",
"*://lichess.org/*",
"*://blitztactics.com/*"
],
"js": [
"lib/lru.min.js",
"src/scripts/content-script.js"
]
}
],
"sandbox": {
"pages": ["lib/engine/lc0/lc0.html"]
},
"options_ui": {
"page": "src/options/options.html",
"open_in_tab": true
},
"content_security_policy": {
"extension_pages": "script-src 'self' 'wasm-unsafe-eval'; object-src 'self';"
},
"host_permissions": [
"http://localhost:8080/*",
"http://localhost:9090/*"
],
"default_locale": "en"
}