-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmanifest.json
46 lines (46 loc) · 895 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
{
"name": "Backbone Debugger",
"version": "0.5.0",
"description": "Developer Tools extension for debugging Backbone.js applications.",
"icons": {
"16": "img/extension16.png",
"48": "img/extension48.png",
"128": "img/extension128.png"
},
"manifest_version": 3,
"devtools_page": "devtools.html",
"background": {
"service_worker": "js/background.js"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"match_about_blank": true,
"js": [
"js/contentscript.js"
],
"run_at": "document_start",
"all_frames": true
}
],
"web_accessible_resources": [
{
"resources": [
"js/lib/*",
"js/backboneAgent/*"
],
"matches": [
"<all_urls>"
]
}
],
"permissions": [
"storage",
"scripting"
],
"host_permissions": [
"<all_urls>"
]
}