-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
36 lines (32 loc) · 906 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
{
"manifest_version": 3,
"name": "YTShortsBlocker",
"version": "1.1",
"description": "Blocks YouTube Shorts from appearing on YouTube.",
"permissions": [],
"host_permissions": ["https://www.youtube.com/*"],
"background": {
"chromium:service_worker": "background.js",
"firefox:scripts": ["background.js"]
},
"icons": {
"16": "icons/icon-16.png",
"32": "icons/icon-32.png",
"48": "icons/icon-48.png",
"96": "icons/icon-96.png",
"128": "icons/icon-128.png"
},
"content_scripts": [
{
"matches": ["https://www.youtube.com/*"],
"js": ["content.js"],
"css": ["content.css"]
}
],
"browser_specific_settings": {
"gecko": {
"id": "{59479247-521a-4251-afb2-6314b6500954}",
"strict_min_version": "109.0"
}
}
}