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 |
| 官方網址 | 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
} | |