-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathmanifest.json
38 lines (33 loc) · 837 Bytes
/
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
{
"manifest_version": 3,
"name": "Simple Auto HD (Open Source)",
"description": "Simple Auto HD quality selector for YouTube. Up to 8k/4k (60fps/50fps/48fps/30fps) supported. Theater mode.",
"version": "2.0.6",
"author": "Sameer Nyaupane",
"icons": {
"16": "sahd-16.png",
"48": "sahd-48.png",
"128": "sahd-128.png"
},
"action": {
"default_title": "Simple Auto HD",
"default_icon": "sahd-16.png",
"default_popup": "popup.html"
},
"background": {
"service_worker": "background.js"
},
"content_scripts": [{
"matches": ["*://www.youtube.com/*"],
"exclude_globs": [
"*/embed/*",
"*/tv#/*",
"*/tv/*"
],
"all_frames": true,
"js": ["content.js"],
"run_at": "document_start"
}],
"permissions": ["storage"],
"host_permissions": ["*://www.youtube.com/*"]
}