-
Notifications
You must be signed in to change notification settings - Fork 57
/
Copy pathmanifest.json
47 lines (47 loc) · 1.07 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
{
"background": {
"scripts": [
"background.js"
]
},
"content_scripts": [
{
"all_frames": false,
"js": [
"chromeplay_contentscript.js"
],
"matches": [
"http://*/*",
"https://*/*"
],
"run_at": "document_end"
}
],
"description": "This extension allows sending YouTube and HTML5 videos to AppleTV via AirPlay",
"icons": {
"128": "icon.png",
"16": "icon.png",
"48": "icon.png"
},
"manifest_version": 2,
"name": "ChromePlay",
"options_page": "options.html",
"page_action": {
"default_icon": {
"19": "icon.png",
"38": "icon.png"
},
"default_title": "AirPlay it!"
},
"permissions": [
"activeTab",
"background",
"contextMenus",
"https://www.youtube.com/",
"http://*/*",
"http://*.local:7000/",
"webRequest",
"webRequestBlocking"
],
"version": "1.4.0"
}