-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
46 lines (46 loc) · 1.13 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
{
"name": "XML Viewer",
"version": "1.0.0",
"manifest_version": 3,
"author": "ZhongHong <[email protected]>",
"description": "The most beautiful and customizable XML highlighter that your eyes have ever seen.",
"homepage_url": "https://github.com/zhonghongfly/xml-viewer",
"icons": {
"128": "icons/128.png",
"32": "icons/32.png",
"16": "icons/16.png"
},
"web_accessible_resources": [
"assets/viewer.css",
"assets/viewer-alert.css",
"pages/options.html",
"pages/omnibox.html"
],
"offline_enabled": true,
"omnibox": {
"keyword": "xml-viewer"
},
"options_page": "pages/options.html",
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"assets/viewer.js"
],
"run_at": "document_start"
}
],
"background": {
"scripts": [
"assets/backend.js",
"assets/omnibox.js"
],
"persistent": false
},
"permissions": [
"*://*/*",
"<all_urls>"
]
}