-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
32 lines (27 loc) · 1.05 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
{
"name": "TM Tools",
"short_name": "TM Tools",
"version": "1.0.6",
"manifest_version": 2,
"description" : "Some tools to help people who like Terra Mystica enjoy more from the Snellman's platform.",
"icons": { "16": "resources/img/icons/16x16.png", "38": "resources/img/icons/38x38.png", "48": "resources/img/icons/48x48.png", "128": "resources/img/icons/128x128.png" },
"browser_action": {
"default_icon": "resources/img/icons/icon.png",
"default_title": "TM Tools",
"default_popup": "main.html"
},
"background": {
"scripts": ["resources/js/jquery/jquery-1.9.1.min.js", "resources/js/tmtools/background.js"]
},
"content_security_policy": "script-src 'self' https://ssl.google-analytics.com; object-src 'self'",
"permissions": [
"storage"
],
"content_scripts": [
{
"matches": ["https://terra.snellman.net/*"],
"js": ["resources/js/jquery/jquery-1.9.1.min.js", "resources/js/tmtools/content.js", "resources/js/canvasjs/canvasjs.min.js"],
"css": ["resources/css/snellman.css"]
}
]
}