File tree Expand file tree Collapse file tree 1 file changed +53
-0
lines changed Expand file tree Collapse file tree 1 file changed +53
-0
lines changed Original file line number Diff line number Diff line change 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+ }
You can’t perform that action at this time.
0 commit comments