forked from relgin/cardspotter
-
Notifications
You must be signed in to change notification settings - Fork 1
/
manifest_ff.json
28 lines (27 loc) · 1021 Bytes
/
manifest_ff.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
{
"browser_specific_settings": {"gecko":{"id": "[email protected]" }},
"background": {
"persistent": true,
"scripts": [ "background.js", "worker_proxy.js" ]
},
"browser_action": {
"default_icon": "csLogo128.png",
"default_title": "Magic CardSpotter"
},
"description": "Automatic card image tooltips for MTG video streams.",
"icons": {
"128": "csLogo128.png",
"16": "csLogo16.png",
"48": "csLogo48.png"
},
"manifest_version": 2,
"name": "CardSpotter (Magic Card Spotter)",
"options_ui": {
"chrome_style": true,
"page": "options.html"
},
"permissions": [ "storage", "activeTab" ],
"short_name": "CardSpotter",
"version": "VERSION",
"web_accessible_resources": [ "worker_proxy.html", "content_script.css", "worker.js", "cardspotter.js", "magic.db", "cardspotter.wasm", "content_script.js", "options.js", "options.html", "css/materialdesignicons.min.css", "images/*","fonts/*", "csLogo16.png", "cardspottername.png" ]
}