-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathmanifest.json
More file actions
87 lines (87 loc) · 2.41 KB
/
manifest.json
File metadata and controls
87 lines (87 loc) · 2.41 KB
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"manifest_version": 3,
"name": "FilterTube",
"description": "Restore peace of mind to your digital video experience.",
"version": "3.3.1",
"minimum_chrome_version": "111",
"background": {
"service_worker": "js/background.js"
},
"action": {
"default_popup": "html/popup.html",
"default_icon": {
"16": "icons/icon-16.png",
"48": "icons/icon-48.png",
"128": "icons/icon-128.png"
}
},
"permissions": [
"storage",
"activeTab",
"scripting",
"tabs",
"downloads"
],
"content_scripts": [
{
"matches": [
"*://*.youtube.com/*",
"*://*.youtubekids.com/*"
],
"js": [
"js/seed.js"
],
"run_at": "document_start",
"world": "MAIN"
},
{
"matches": [
"*://*.youtube.com/*",
"*://*.youtubekids.com/*"
],
"js": [
"js/shared/identity.js",
"js/content/menu.js",
"js/content/dom_helpers.js",
"js/content/dom_extractors.js",
"js/content/dom_fallback.js",
"js/content/block_channel.js",
"js/content/bridge_injection.js",
"js/content/bridge_settings.js",
"js/content/handle_resolver.js",
"js/content/collab_dialog.js",
"js/content/release_notes_prompt.js",
"js/content/first_run_prompt.js",
"js/content_bridge.js"
],
"run_at": "document_start",
"world": "ISOLATED"
}
],
"web_accessible_resources": [
{
"resources": [
"js/injector.js",
"js/filter_logic.js",
"js/seed.js",
"js/shared/identity.js",
"icons/file.svg"
],
"matches": [
"*://*.youtube.com/*",
"*://*.youtubekids.com/*"
]
}
],
"icons": {
"16": "icons/icon-16.png",
"32": "icons/icon-32.png",
"48": "icons/icon-48.png",
"128": "icons/icon-128.png"
},
"host_permissions": [
"*://*.youtube.com/*",
"*://*.youtube-nocookie.com/*",
"*://*.youtubekids.com/*"
]
}