-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.v2.json
More file actions
47 lines (43 loc) · 1.07 KB
/
Copy pathmanifest.v2.json
File metadata and controls
47 lines (43 loc) · 1.07 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
{
"name": "TriggerRemover",
"version": "0.3.2",
"description": "Remove Trigger-inducing content from pages",
"homepage_url": "https://github.com/operatorequals/TriggerRemover",
"manifest_version": 2,
"icons": {
"16": "assets/images/icon16.png",
"32": "assets/images/icon32.png",
"48": "assets/images/icon48.png",
"128": "assets/images/icon128.png"
},
"browser_action": {
"default_popup": "popup.html",
"browser_style": true
},
"permissions": [
"storage"
],
"options_ui": {
"page": "options.html",
"browser_style": false
},
"browser_specific_settings": {
"gecko": {
"id": "{0ccd44a4-1966-4dfb-aa2d-a24fed3a4753}"
}
},
"content_scripts": [
{
"matches": [
"https://*.youtube.com/**"
],
"js": [
"assets/js/lib/browser-polyfill.min.js",
"assets/js/trigger-remover.js",
"assets/js/utils.js",
"assets/js/page-purifier-youtube.js"
],
"run_at": "document_end"
}
]
}