Seven JSON Viewer
Minimal JSON Viewer with JSON Path
什麼是Seven JSON Viewer?
Seven JSON Viewer是由https://reez.dev開發的Chrome擴展程式,該擴展的主要功能是“Minimal JSON Viewer with JSON Path”。
擴展截圖
下載Seven JSON Viewer擴展crx文件
下載Seven JSON Viewer擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Minimal JSON Viewer with JSON Path Support.
Features
--------------
1. Syntax Highlighting
2. Collapsible tree for improved readability
3. Dark themed
4. Realtime JSON Path support
5. Multiple Themes
Note:
This extension might have conflict with other JSON highlighters/beautifiers, like 'JSON Formatter', 'JSONView', 'Pretty JSON' and so on – Please, disable those before trying this for better experience. 擴展基本資訊
| 名稱 | |
| ID | cfahdpkjihoomfomffdbmamapgdpohoe |
| 官方網址 | https://chromewebstore.google.com/detail/seven-json-viewer/cfahdpkjihoomfomffdbmamapgdpohoe |
| 簡介 | Minimal JSON Viewer with JSON Path |
| 檔案大小 | 228 KB |
| 安裝次數 | 3,163 |
| 目前版本 | 5.0 |
| 更新時間 | 2022-07-27 |
| 上架時間 | 2020-03-17 |
| 評分 | 4.50/5 共 8 次評分 |
| 開發者 | https://reez.dev |
| 電子郵箱 | [email protected] |
| 付費類型 | free |
| 擴展官網 | https://reez.dev/project/seven-json-viewer |
| 說明頁面URL | https://reez.dev/project/seven-json-viewer#support |
| 支援的語言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Seven JSON Viewer",
"description": "Minimal JSON Viewer with JSON Path",
"short_name": "JSON Viewer",
"version": "5.0",
"offline_enabled": true,
"manifest_version": 3,
"content_scripts": [
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"js": [
"main.js"
],
"run_at": "document_start",
"all_frames": true
}
],
"content_security_policy": {
"sandbox": "sandbox allow-scripts; script-src 'self'; object-src 'none';"
},
"permissions": [
"storage"
],
"icons": {
"16": "assets\/icon-16.png",
"48": "assets\/icon-48.png",
"128": "assets\/icon-128.png",
"512": "assets\/icon-512.png"
},
"action": {
"default_popup": "popup.html"
}
} | |