-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
manifest.mv2.json
61 lines (61 loc) · 1.33 KB
/
manifest.mv2.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
51
52
53
54
55
56
57
58
59
60
61
{
"manifest_version": 2,
"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": {
"browser_style": true,
"page": "options.html"
},
"browser_action": {
"browser_style": true,
"default_title": "__MSG_extensionName__",
"default_popup": "browser_action.html"
},
"permissions": [
"storage"
],
"browser_specific_settings": {
"gecko": {
"id": "[email protected]",
"strict_min_version": "121.0"
},
"gecko_android": {
"strict_min_version": "121.0"
}
}
}