-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
37 lines (30 loc) · 723 Bytes
/
manifest.json
File metadata and controls
37 lines (30 loc) · 723 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
37
{
"manifest_version": 2,
"name": "Stackblocker",
"version": "1.0",
"description": "This blocks the individual elements of the sidebar on Stack Overflow (and adjacent sites)",
"icons": {
"48": "icons/border-48.png"
},
"content_scripts": [
{
"matches": ["*://stackoverflow.com/*",
"*://*.stackoverflow.com/*",
"*://*.stackexchange.com/*"],
"js": ["stackblocker.js"]
}
],
"browser_action": {
"default_icon": {
"48": "icons/border-48.png"
},
"default_popup": "options/options.html",
"default_title": "SO Block Options"
},
"permissions": ["storage"],
"applications": {
"gecko": {
"id": "thomsonjack41@gmail.com"
}
}
}