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 |
| 官方URL | 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"
}
} | |