-
Notifications
You must be signed in to change notification settings - Fork 43
/
Copy pathmanifest.json
40 lines (35 loc) · 851 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
{
"name": "Backbone Debugger",
"version": "0.5.0",
"description": "Developer Tools extension for debugging Backbone.js applications.",
"author": "Manuel Dell'Elce and contributors",
"minimum_chrome_version": "110",
"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": [
"tabs"
]
}