-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
executable file
·88 lines (87 loc) · 1.96 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "Beamly OnDemand",
"version": "2.3",
"manifest_version": 2,
"description": "Beamly OnDemand",
"homepage_url": "http://beamly.com",
"icons": {
"16": "icons/beamly16.png",
"19": "icons/beamly19.png",
"48": "icons/beamly48.png",
"128": "icons/beamly128.png"
},
"permissions": [
"storage",
"https://*/*"
],
"browser_action":{
"default_icon":"icons/beamly16.png",
"default_title": "Beamly OnDemand",
"default_popup": "src/browser_action/popup.html"
},
"content_scripts": [
{
"matches": [
"http://www.bbc.co.uk/iplayer/*"
],
"css": [
"src/common/common.css",
"src/iplayer/iplayer.css"
],
"js": [
"js/jquery-1.11.1.min.js",
"js/underscore.js",
"js/backbone.js",
"js/twitter-entities.js",
"src/common/common.js",
"src/iplayer/iplayer.js"
]
},
{
"matches": [
"http://www.channel4.com/programmes/*"
],
"css": [
"src/common/common.css",
"src/4od/4od.css"
],
"js": [
"js/jquery-1.11.1.min.js",
"js/underscore.js",
"js/backbone.js",
"js/twitter-entities.js",
"src/common/common.js",
"src/4od/4od.js"
]
},
{
"matches": [
"https://www.itv.com/itvplayer/*"
],
"css": [
"src/common/common.css",
"src/itv/itv.css"
],
"js": [
"js/jquery-1.11.1.min.js",
"js/underscore.js",
"js/backbone.js",
"js/twitter-entities.js",
"src/common/common.js",
"src/itv/itv.js"
]
}
],
"web_accessible_resources": [
"icons/appicons.png",
"js/backbone.js",
"js/underscore.js",
"js/jquery-1.11.1.min.js",
"images/logo.png",
"js/twitter-entities.js",
"src/common/common.js",
"src/common/common.css",
"src/browser_action/popup.js",
"images/placeholder.png"
]
}