-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmanifest.json
37 lines (37 loc) · 889 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
37
{
"name": "Critic Filter",
"version": "1.0",
"manifest_version": 2,
"description": "Critic Filter - hides distressing contents",
"browser_action": {
"default_title": "Critic Filter",
"default_popup": "lib/ui/popup/view.html"
},
"content_security_policy": "script-src 'self' 'unsafe-hashes' 'unsafe-eval'; object-src 'self'",
"content_scripts": [
{
"matches": ["<all_urls>"],
"js": ["lib/scripts/content-scripts.js"]
}
],
"permissions": [
"contextMenus",
"tts",
"storage",
"notifications",
"webRequest",
"webRequestBlocking",
"storage",
"notifications",
"webRequest",
"webRequestBlocking",
"<all_urls>",
"tabs",
"unlimitedStorage"
],
"options_page": "lib/ui/options/options-view.html",
"background":{
"scripts":["lib/scripts/background.js"],
"persistent":true
}
}