forked from ducksper/lichess_enhancement
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
47 lines (39 loc) · 1013 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
{
"manifest_version": 2,
"name": "Lichess enhancement",
"version": "1.5",
"description": "New styles of pieces and boards for Lichess",
"homepage_url": "https://github.com/ducksper/lichess_enhancement",
"icons": {
"48": "ressources/logo/chesscom_pawn.png"
},
"permissions": [
"activeTab",
"storage"
],
"content_scripts": [
{
"matches": ["*://*.lichess.org/*"],
"js": [
"main.js",
"ressources/js/arrive.js",
"ressources/js/Boards.js",
"ressources/js/Pieces.js"
],
"run_at": "document_end",
"all_frames": true
}
],
"background": {
"scripts": ["background.js"],
"persistent": true
},
"browser_action": {
"default_icon": "ressources/logo/chesscom_pawn.png",
"default_title": "Lichess enhancement",
"default_popup": "index.html"
},
"web_accessible_resources": [
"ressources/*"
]
}