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 |
| Eメール | [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
} | |