-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathmanifest.json
43 lines (37 loc) · 1.14 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
{
"manifest_version": 2,
"name": "Chess.com analyse at lichess",
"description": "Analyse chess.com game at lichess.org for free.",
"homepage_url": "https://github.com/Zeraye/chess-analysis-firefox-extension/",
"version": "1.8.2",
"author": "zeraye",
"icons": {
"64": "src/icons/addon-icon-64.png"
},
"permissions": ["https://www.chess.com/*", "https://lichess.org/*", "tabs"],
"background": {
"scripts": ["src/js/background.js"]
},
"content_scripts": [
{
"matches": [
"https://www.chess.com/game/*",
"https://www.chess.com/analysis/game/live/*",
"https://www.chess.com/analysis/game/daily/*",
"https://www.chess.com/analysis/game/computer/*"
],
"js": ["src/js/createLoading.js"],
"css": ["src/css/createLoading.css"]
}
],
"page_action": {
"default_icon": "src/icons/page-action-icon-64.png",
"default_title": "Analyse game",
"show_matches": [
"https://www.chess.com/game/*",
"https://www.chess.com/analysis/game/live/*",
"https://www.chess.com/analysis/game/daily/*",
"https://www.chess.com/analysis/game/computer/*"
]
}
}