-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
36 lines (30 loc) · 739 Bytes
/
manifest.json
File metadata and controls
36 lines (30 loc) · 739 Bytes
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": 2,
"name": "Feminism Spotter",
"description": "Early detection system for people who find feminism offensive.",
"version": "1.0",
"permissions": [
"cookies", "tabs"
],
"background": { "scripts": ["bg.js"] },
"content_scripts": [
{
"matches" : [ "http://*/*", "https://*/*" ],
"js": ["spotter.js"]
}
],
"icons": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png"
},
"page_action": {
"default_icon": {
"19": "icon.png"
},
"default_title": "A lightbox was blocked on this page"
},
"web_accessible_resources": [
"fist.jpg"
]
}