forked from SimonS/jankteki
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
45 lines (41 loc) · 1.11 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": 2,
"name": "Jankteki",
"description": "An enhancement suite for jinteki.net",
"version": "0.6.6",
"icons": {
"16": "icons/icon16.png",
"48": "icons/icon48.png",
"128": "icons/icon128.png"
},
"page_action": {
"default_popup": "popup/popup.html",
"default_icon": "icons/icon48.png"
},
"background": {
"scripts": [
"lib/models/User.js", "lib/friends.js", "background/eventPage.js"
],
"persistent": false
},
"content_scripts": [
{
"matches": [
"http://www.jinteki.net/*", "https://www.jinteki.net/*", "https://jinteki.zaroth.net/*"
],
"js": ["lib/models/User.js", "lib/friends.js", "lib/options.js", "inline/lobby.js", "inline/injector.js", "inline/options.js"],
"css": ["inline/jankteki.css"],
"run_at": "document_end"
}
],
"options_page": "options/options.html",
"web_accessible_resources": ["inline/gameboard.js", "inline/widenHq.js"],
"permissions": [
"contextMenus",
"declarativeContent",
"notifications",
"storage",
"http://jinteki.net/*",
"https://jinteki.net/*"
]
}