-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmanifest.json
45 lines (45 loc) · 835 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
38
39
40
41
42
43
44
45
{
"manifest_version": 2,
"name": "Fake News Blocker",
"version": "0.0.5",
"description": "Provides a warning for links and pages known to host fake news",
"icons": {
"48": "icons/logo.svg",
"96": "icons/logo.svg"
},
"browser_action": {
"default_icon": "icons/logo-active.svg",
"default_title": "Disable Fake News Blocker"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"browser-polyfill.js",
"assets/blocked_sites.js",
"content_scripts/filter.js"
],
"run_at": "document_start"
}
],
"background": {
"scripts": [
"browser-polyfill.js",
"assets/blocked_sites.js",
"background/background.js"
]
},
"options_ui": {
"page": "settings/options.html"
},
"permissions": [
"storage"
],
"applications": {
"gecko": {
"id": "[email protected]"
}
}
}