Skip to content

Commit cf929bd

Browse files
Create chore(manifest): update extension name
Signed-off-by: Phileco <[email protected]>
1 parent 41717d6 commit cf929bd

File tree

1 file changed

+53
-0
lines changed

1 file changed

+53
-0
lines changed
Lines changed: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
{
2+
"manifest_version": 3,
3+
"name": "JSON Viewer",
4+
"version": "3.0.1",
5+
"description": "The most beautiful and customizable JSON/JSONP highlighter that your eyes have ever seen.",
6+
"homepage_url": "https://github.com/mrfanii/JSON-Viewer-v3",
7+
: "https://github.com/krishnprakash/json-viewer",
8+
"icons": {
9+
"128": "icons/128.png",
10+
"32": "icons/32.png",
11+
"16": "icons/16.png"
12+
},
13+
"background": {
14+
"service_worker": "assets/background.js"
15+
},
16+
"offline_enabled": true,
17+
"omnibox": {
18+
"keyword": "json-viewer"
19+
},
20+
"options_page": "pages/options.html",
21+
"content_scripts": [
22+
{
23+
"matches": [
24+
"<all_urls>"
25+
],
26+
"js": [
27+
"assets/viewer.js"
28+
],
29+
"run_at": "document_start"
30+
}
31+
],
32+
"host_permissions": [
33+
"<all_urls>"
34+
],
35+
"permissions": [
36+
"scripting",
37+
"activeTab",
38+
"storage"
39+
],
40+
"web_accessible_resources": [
41+
{
42+
"resources": [
43+
"assets/viewer.css",
44+
"assets/viewer-alert.css",
45+
"pages/options.html",
46+
"pages/omnibox.html"
47+
],
48+
"matches": [
49+
"<all_urls>"
50+
]
51+
}
52+
]
53+
}

0 commit comments

Comments
 (0)