-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathmanifest.json
34 lines (34 loc) · 916 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
{
"manifest_version": 2,
"name": "Behave!",
"version": "0.9.7",
"short_name": "Behave!",
"author": "Stefano Di Paola",
"description": "A monitoring browser extension for pages acting as bad boys ",
"icons": {
"16": "img/favicon_io/icon-16x16.png",
"48": "img/favicon_io/icon-48x48.png",
"128": "img/favicon_io/icon-128x128.png"
},
"incognito": "spanning",
"browser_action": {
"default_icon": {
"16": "img/favicon_io/icon-16x16.png",
"32": "img/favicon_io/icon-32x32.png"
},
"default_popup": "ui/popup.html",
"default_title": "Behave!"
},
"background": {
"scripts": ["background.js"],
"persistent": true
},
"permissions": [
"webRequest",
"webRequestBlocking",
"notifications",
"storage",
"<all_urls>",
"tabs"
]
}