-
Notifications
You must be signed in to change notification settings - Fork 24
/
manifest.json
executable file
·57 lines (53 loc) · 1.2 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
{
"name": "HybridTvViewer",
"version": "0.6.0",
"manifest_version": 2,
"description": "Extension to deal with HbbTV,CE-HTML,BML,OHTV webpages",
"default_locale": "en",
"applications": {
"gecko": {
"id": "[email protected]",
"strict_min_version": "57.0"
}
},
"permissions": [
"tabs",
"activeTab",
"webRequest",
"webRequestBlocking",
"<all_urls>"
],
"web_accessible_resources": [
"js/patcher.js",
"js/options.js",
"js/hbbdevtools.js",
"js/first.js",
"js/hbbtv.js",
"js/hbbdom.js",
"js/hbbobj.js",
"css/injector.css",
"css/options.css",
"img/tv-icon19-off.png",
"img/tv-icon38-off.png",
"img/tv-icon128-off.png",
"img/tv-icon128-on.png",
"img/power.svg",
"https://cdn.dashjs.org/latest/dash.all.min.js"
],
"browser_action": {
"default_icon": {
"19": "img/tv-icon19-off.png",
"38": "img/tv-icon38-off.png"
},
"default_title": "Hybrid TV viewer",
"default_popup": "html/options.html"
},
"icons": {
"128": "img/tv-icon128-on.png"
},
"background": {
"scripts": [ "js/patcher.js" ],
"persistent": true
},
"devtools_page": "html/hbbdevtools.html"
}