JSONVue
Validate and view JSON documents
什么是JSONVue?
JSONVue是由gildas开发的Chrome扩展程序,该扩展的主要功能是“Validate and view JSON documents”。
扩展截图
下载JSONVue扩展crx文件
下载JSONVue扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
JSONView port for Chrome.
Original firefox extension is here: http://benhollis.net/software/jsonview/
Notes:
- JSON is validated using a client-side javascript implementation of JSONLint (http://github.com/zaach/jsonlint)
- this extension displays JSON text compliant with rfc 4627 (http://www.ietf.org/rfc/rfc4627.txt)
- The stylesheet used to display the JSON content can be customized
- JSONP (http://en.wikipedia.org/wiki/JSON#JSONP) is supported 扩展基本信息
| 名称 | |
| ID | chklaanhfefbnpoihckbnefhakgolnmc |
| 官方URL | https://chromewebstore.google.com/detail/jsonvue/chklaanhfefbnpoihckbnefhakgolnmc |
| 简介 | Validate and view JSON documents |
| 文件大小 | 181 KB |
| 安装次数 | 1,257,839 |
| 当前版本 | 0.2.3 |
| 更新时间 | 2023-11-29 |
| 上架时间 | 2017-01-06 |
| 评分 | 4.54/5 共2651次评分 |
| 开发者 | gildas |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | https://github.com/gildas-lormeau/JSONVue |
| 帮助页面URL | https://github.com/gildas-lormeau/JSONVue/issues |
| 隐私政策页面URL | https://github.com/gildas-lormeau/SingleFile/blob/master/privacy.md |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "JSONVue",
"icons": {
"16": "resources\/jsonvue16.png",
"48": "resources\/jsonvue48.png",
"128": "resources\/jsonvue128.png"
},
"version": "0.2.3",
"description": "Validate and view JSON documents",
"options_ui": {
"browser_style": true,
"page": "options.html",
"open_in_tab": false
},
"background": {
"service_worker": "js\/background.js"
},
"content_scripts": [
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*",
"ftp:\/\/*\/*",
"file:\/\/\/*"
],
"js": [
"js\/content.js"
],
"run_at": "document_end",
"all_frames": true
}
],
"permissions": [
"contextMenus",
"storage"
],
"manifest_version": 3
} | |