forked from lad1337/SickBeardConnect
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathmanifest.json
37 lines (37 loc) · 1.19 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
{
"name": "__MSG_ext_name__",
"manifest_version": 2,
"version": "0.1.23.1",
"permissions": [ "http://*/*", "https://*/*", "tabs", "notifications" ],
"description": "SickRage extension for Google Chrome.",
"background": {
"page": "background.html"
},
"options_page": "options.html",
"default_locale": "en",
"browser_action": {
"default_icon": "images/icon19.png",
"default_popup": "popup.html",
"default_title": "SickRage Connect"
},
"content_scripts": [
{
"matches": ["http://trakt.tv/shows/*","http://*.trakt.tv/shows/*","http://thetvdb.com/*series*","http://*.thetvdb.com/*series*"],
"js": ["third_party/jquery/js/jquery-1.6.2.min.js","scripts/SickRageConnect.js"],
"run_at": "document_end"
}
],
"icons": {
"128": "images/icon128.png",
"16": "images/icon16.png",
"48": "images/icon48.png"
},
"web_accessible_resources": [
"images/icon48.png",
"images/no16.png",
"css/sbconnect_content.css",
"images/bg.gif",
"images/yes16.png",
"images/throbber.svg"
]
}