-
-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathmanifest.json
47 lines (47 loc) · 1.1 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
{
"manifest_version": 3,
"name": "__MSG_extensionName__",
"short_name": "Clickbait Remover",
"default_locale": "en",
"version": "0.9.1",
"description": "__MSG_extensionDescription__",
"content_scripts": [
{
"matches": [
"*://www.youtube.com/*",
"*://m.youtube.com/*"
],
"js": [
"js/youtube.js"
]
}
],
"background": {
"service_worker": "js/background.js"
},
"action": {
"default_icon": {
"16": "images/clickbait_remover_icon16.png",
"32": "images/clickbait_remover_icon32.png"
},
"default_title": "Clickbait Remover for Youtube",
"default_popup": "options_popup.html"
},
"icons": {
"16": "images/clickbait_remover_icon16.png",
"32": "images/clickbait_remover_icon32.png",
"48": "images/clickbait_remover_icon48.png",
"128": "images/clickbait_remover_icon128.png"
},
"permissions": [
"storage",
"declarativeNetRequestWithHostAccess",
"scripting"
],
"host_permissions": [
"*://www.youtube.com/*",
"*://m.youtube.com/*",
"*://i.ytimg.com/*",
"*://i9.ytimg.com/*"
]
}