-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
45 lines (45 loc) · 1.06 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
{
"name": "YouTube HD Edge",
"description": "This extension allow you to set the default setting of your YouTube player.",
"author": "Koen Hendriks",
"homepage_url": "http://expandyourworld.nl",
"version": "1.0",
"content_scripts": [
{
"matches": [ "*://*.youtube.com/*" ],
"js": [
"thirdparty/jquery-1.12.3.min.js",
"utils.js",
"inject.js"
],
"run_at": "document_start",
"all_frames": false
}
],
"background":{
"page": "Background.html",
"persistent": true
},
"icons": {
"256": "images/icon.png",
"128": "images/icon.png",
"48": "images/icon.png",
"19": "images/icon.png"
},
"browser_action": {
"default_title": "YouTube HD Edge Settings",
"default_icon": {
"38": "images/icon.png"
},
"default_popup": "settings/settings.html"
},
"permissions": [
"tabs",
"notifications",
"webRequest",
"webRequestBlocking",
"storage",
"<all_urls>"
],
"options_page": "settings/settings.html"
}