-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
manifest.mv3.json
50 lines (50 loc) · 1.06 KB
/
manifest.mv3.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
{
"manifest_version": 3,
"default_locale": "en",
"name": "__MSG_extensionName__",
"description": "__MSG_extensionDescription__",
"homepage_url": "https://jbscript.dev/control-panel-for-youtube",
"version": "1.3.0",
"icons": {
"16": "icons/icon16.png",
"32": "icons/icon32.png",
"48": "icons/icon48.png",
"64": "icons/icon64.png",
"96": "icons/icon96.png",
"128": "icons/icon128.png"
},
"content_scripts": [
{
"matches": [
"https://www.youtube.com/*",
"https://m.youtube.com/*"
],
"exclude_matches": [
"https://www.youtube.com/embed/*"
],
"js": [
"content.js"
]
},
{
"matches": [
"https://www.youtube.com/embed/*",
"https://www.youtube-nocookie.com/embed/*"
],
"js": [
"embed.js"
],
"all_frames": true
}
],
"options_ui": {
"page": "options.html"
},
"action": {
"default_title": "__MSG_extensionName__",
"default_popup": "browser_action.html"
},
"permissions": [
"storage"
]
}