JSON Viewer Pro
A completely free extension to visualise JSON response in awesome Tree and Chart view with great user experience and options. ✅…
JSON Viewer Proとは何ですか?
JSON Viewer ProはRahul Baruriによって開発されたChromeの拡張機能で、その主な機能は「A completely free extension to visualise JSON response in awesome Tree and Chart view with great user experience and options. ✅…」です。
拡張機能のスクリーンショット
JSON Viewer Pro拡張機能のCRXファイルをダウンロード
JSON Viewer Pro拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
A completely free extension to visualise JSON response in awesome Tree and Chart view with great user experience and options.
✅ Completely Free and no advertisements.
Core features:
✅ Beautify JSON response from API
✅ Visual representation of JSON with Chart
✅ Depth traversing of JSON property using breadcrumbs
✅ Write custom JSON in Input area
✅ Import local JSON file
✅ Download JSON file using Context Menu
✅ URL filters
✅ Change Themes
✅ Custom CSS
✅ Cool User Interface.
✅ Copy property and value
✅ Access JSON in your console using only json keyword 拡張機能の基本情報
| 名前 | |
| ID | eifflpmocdbdmepbjaopkkhbfmdgijcc |
| 公式URL | https://chromewebstore.google.com/detail/json-viewer-pro/eifflpmocdbdmepbjaopkkhbfmdgijcc |
| 説明 | A completely free extension to visualise JSON response in awesome Tree and Chart view with great user experience and options. ✅… |
| ファイルサイズ | 338 KB |
| インストール数 | 385,193 |
| 現在のバージョン | 1.0.1 |
| 最終更新日 | 2021-03-21 |
| 公開日 | 2020-10-04 |
| 評価 | 4.77/5 合計 111 レビュー |
| 開発者 | Rahul Baruri |
| Eメール | [email protected] |
| 支払い方法 | free |
| 拡張機能のウェブサイト | https://github.com/rbrahul/Awesome-JSON-Viewer |
| ヘルプページのURL | https://github.com/rbrahul/Awesome-JSON-Viewer |
| 対応言語 | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "JSON Viewer Pro",
"short_name": "JSON Viewer",
"offline_enabled": true,
"version": "1.0.1",
"manifest_version": 2,
"icons": {
"16": "images\/icons\/icon-16.png",
"38": "images\/icons\/icon-32.png",
"128": "images\/icons\/icon-128.png"
},
"background": {
"scripts": [
"\/js\/background.js"
]
},
"options_page": "options.html",
"content_scripts": [
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*",
"ftp:\/\/*\/*",
"file:\/\/\/*"
],
"js": [
"\/js\/contentScript.js"
],
"run_at": "document_start",
"all_frames": true
}
],
"browser_action": {
"default_icon": "images\/icons\/icon-16.png"
},
"permissions": [
"*:\/\/*\/*",
"contextMenus"
],
"web_accessible_resources": [
"\/js\/main.js",
"\/css\/main.css",
"\/css\/themes\/mdn.css",
"options.html",
"images\/icons\/gear.png"
]
} | |