forked from barbushin/javascript-errors-notifier
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
51 lines (51 loc) · 948 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
46
47
48
49
50
51
{
"name": "JavaScript Errors Notifier",
"short_name": "js_error",
"description": "Notifies JavaScript errors by icon in toolbar bar or notification popup",
"version": "3.1.4",
"manifest_version": 2,
"background": {
"scripts": [
"background.js"
]
},
"content_scripts": [
{
"all_frames": true,
"js": [
"content.js"
],
"matches": [
"<all_urls>"
],
"run_at": "document_start"
}
],
"options_page": "options.html",
"icons": {
"128": "img/error_128.png",
"16": "img/error_16.png",
"48": "img/error_48.png"
},
"incognito": "spanning",
"page_action": {
"default_icon": {
"19": "img/error_19_disabled.png",
"38": "img/error_38_disabled.png"
},
"default_popup": "popup.html"
},
"web_accessible_resources": [
"img/error_64.png",
"img/error_38.png",
"img/error_19.png",
"popup.html",
"options.html"
],
"permissions": [
"<all_urls>",
"tabs",
"storage",
"webRequest"
]
}