-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
42 lines (36 loc) · 1.02 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
{
"manifest_version": 2,
"name": "Chrome Connected TV",
"description": "This extension provides you an easy way to run and debug HbbTV applications on your favorite browser.",
"version": "0.1",
"permissions": [
"activeTab"
],
"browser_action": {
"default_icon": {
"19": "img/icon19.png",
"38": "img/icon38.png"
},
"default_title": "Let's make current page connected!"
},
"background": {
"scripts": [ "js/background.js" ],
"persistent": false
},
"content_scripts": [
{
"matches": [ "file://*/*", "http://*/*", "https://*/*" ],
"js": [ "js/documentStart.js" ],
"run_at": "document_start",
"css": [ "css/main.css" ]
},
{
"matches": [ "file://*/*", "http://*/*", "https://*/*" ],
"js": [ "js/documentIdle.js" ],
"run_at": "document_idle"
}
],
"web_accessible_resources": [
"img/*.png"
]
}