forked from lad1337/SickBeardConnect
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
36 lines (36 loc) · 1.15 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
{
"name": "__MSG_ext_name__",
"manifest_version": 2,
"version": "0.1.22",
"permissions": [ "http://*/*", "https://*/*", "tabs", "notifications" ],
"description": "SickBeard (CW) extension for Google Chrome. (Edited to enable SickRage Compatibility)",
"background": {
"page": "background.html"
},
"options_page": "options.html",
"default_locale": "en",
"browser_action": {
"default_icon": "images/icon19cw.png",
"default_popup": "popup.html",
"default_title": "Sick Beard Connect (CW)"
},
"content_scripts": [
{
"matches": ["http://trakt.tv/show/*","http://*.trakt.tv/show/*","http://thetvdb.com/*series*","http://*.thetvdb.com/*series*"],
"js": ["scripts/SickBeardConnect.js"]
}
],
"icons": {
"128": "images/icon128cw.png",
"16": "images/icon16cw.png",
"48": "images/icon48cw.png"
},
"web_accessible_resources": [
"images/icon48cw.png",
"images/no16.png",
"css/sbconnect_content.css",
"images/bg.gif",
"images/yes16.png",
"images/throbber.svg"
]
}