-
Notifications
You must be signed in to change notification settings - Fork 2
/
manifest.json
56 lines (56 loc) · 1.36 KB
/
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
52
53
54
55
56
{
"name": "JavaScript Errors Notifier",
"short_name": "js_error",
"description": "Identifies JavaScript errors with minimal disruption by configurable pop-up icon and toolbar icon",
"version": "4.0.0.17",
"version_name": "4.0 beta 17",
"manifest_version": 3,
"background": {
"service_worker": "background.js",
"type": "module"
},
"content_scripts": [
{
"all_frames": true,
"js": ["content.js"],
"matches": ["<all_urls>"],
"run_at": "document_start"
},
{
"world": "MAIN",
"matches": ["file://*/*", "http://*/*", "https://*/*"],
"js": ["code-to-inject.js"],
"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",
"action": {
"default_icon": {
"19": "img/error_19_disabled.png",
"38": "img/error_38_disabled.png"
},
"default_popup": "popup.html"
},
"web_accessible_resources": [
{
"resources": [
"img/error_64.png",
"img/error_38.png",
"img/error_19.png",
"img/error_128.png",
"popup.html",
"options.html",
"code-to-inject.js"
],
"matches": ["<all_urls>"]
}
],
"permissions": ["webRequest", "storage"],
"host_permissions": ["*://*/*"]
}