-
Notifications
You must be signed in to change notification settings - Fork 2
/
manifest.json
41 lines (41 loc) · 1.15 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
{
"name": "Chess.com Insights",
"description": "Shows Win/Lose/Draw and average accuracy for players on chess.com",
"author": "thieleju",
"manifest_version": 3,
"version": "2.7.3",
"permissions": ["activeTab", "scripting", "storage"],
"action": {
"default_locale": "en",
"default_title": "Chess.com Insights",
"default_popup": "index.html"
},
"icons": {
"16": "icons/icon16.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
},
"background": {
"service_worker": "src/scripts/sw.ts",
"type": "module"
},
"content_scripts": [
{
"matches": [
"https://*.chess.com/play/online*",
"https://*.chess.com/play/online/*",
"https://*.chess.com/play/arena/*",
"https://*.chess.com/game/daily/*",
"https://*.chess.com/game/live/*",
"https://*.chess.com/game/*",
"https://*.chess.com/live/game/*",
"https://*.chess.com/analysis/game/live/*"
],
"js": ["src/scripts/insights.ts"]
}
],
"host_permissions": ["https://*.chess.com/*"],
"content_security_policy": {
"extension_pages": "script-src 'self'; object-src 'self';"
}
}