forked from khloke/play-to-xbmc-chrome
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
68 lines (68 loc) · 2.78 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"manifest_version": 2,
"version": "1.7.7.1",
"name": "Play to Kodi",
"description": "Play, queue and remote control your favourite online media on Kodi / XBMC.",
"options_page": "options.html",
"permissions": [ "tabs", "http://*/*", "contextMenus" ],
"browser_action": {
"default_icon": "images/icon.png",
"default_popup": "remote.html"
},
"icons": {
"128": "images/tv.png"
},
"background": {
"scripts": [
"js/jquery-2.1.4.min.js",
"js/modules.js",
"js/shared.js",
"js/background_scripts/background.js",
"js/xbmc-helper.js"
]
},
"content_scripts": [{
"matches": ["<all_urls>"],
"js": ["js/jquery-2.1.4.min.js", "js/modules.js","js/content_scripts/context-menu-content-scripts.js", "js/content_scripts/embedded-video-content-scripts.js"],
"all_frames": true
},{
"matches": ["http://www.liveleak.com/view*"],
"js": ["js/content_scripts/liveleak-content-scripts.js", "js/jquery-2.1.4.min.js"]
}, {
"matches": ["*://www.youtube.com/*"],
"js": ["js/jquery-2.1.4.min.js", "js/shared.js", "js/content_scripts/youtube-content-scripts.js"]
}, {
"matches": ["*://soundcloud.com/*"],
"js": ["js/jquery-2.1.4.min.js", "js/shared.js", "js/content_scripts/soundcloud-content-scripts.js"]
}, {
"matches": ["*://streamcloud.eu/*"],
"js": ["js/jquery-2.1.4.min.js", "js/shared.js", "js/content_scripts/streamcloud-content-scripts.js"]
}, {
"matches": ["*://mycloudplayers.com/*"],
"js": ["js/shared.js", "js/content_scripts/soundcloud-content-scripts.js"]
}, {
"matches": ["*://*.khanacademy.org/*"],
"js": ["js/jquery-2.1.4.min.js", "js/shared.js", "js/content_scripts/khanacademy-content-scripts.js"]
}, {
"matches": ["*://*.hulu.com/watch/*"],
"js": ["js/jquery-2.1.4.min.js", "js/shared.js", "js/content_scripts/hulu-content-scripts.js"]
}, {
"matches": ["*://*.animelab.com/player/*"],
"js": ["js/jquery-2.1.4.min.js", "js/content_scripts/animelab-content-scripts.js"]
}, {
"matches": ["*://*.lynda.com/*"],
"js": ["js/jquery-2.1.4.min.js", "js/content_scripts/lyndacom-content-scripts.js"]
}, {
"matches": ["*://*.urgantshow.ru/page/*"],
"js": ["js/content_scripts/urgantshow-content-scripts.js", "js/jquery-2.1.4.min.js"]
}, {
"matches": ["*://*.kino-live.org/*"],
"js": ["js/content_scripts/kinolive-content-scripts.js", "js/jquery-2.1.4.min.js"]
}, {
"matches": ["*://*.vessel.com/*"],
"js": ["js/content_scripts/vessel-content-scripts.js", "js/jquery-2.1.4.min.js"]
}],
"web_accessible_resources": [
"images/*"
]
}