JSONView
Validate and view JSON documents
JSONViewとは何ですか?
JSONViewはtomxuxuによって開発されたChromeの拡張機能で、その主な機能は「Validate and view JSON documents」です。
拡張機能のスクリーンショット
JSONView拡張機能のCRXファイルをダウンロード
JSONView拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
浏览器打开JSON格式的API接口时,会对其进行格式化,使其更容易被阅读。
例如 https://api.pictureknow.com/api/v1/version 安装插件后就更容易阅读。 拡張機能の基本情報
| 名前 | |
| ID | cgphfnglahpambfhocchajalljaeegef |
| 公式URL | https://chromewebstore.google.com/detail/jsonview/cgphfnglahpambfhocchajalljaeegef |
| 説明 | Validate and view JSON documents |
| ファイルサイズ | 136 KB |
| インストール数 | 2,772 |
| 現在のバージョン | 1.0.6 |
| 最終更新日 | 2023-10-17 |
| 公開日 | 2021-05-30 |
| 評価 | 5.00/5 合計 4 レビュー |
| 開発者 | tomxuxu |
| Eメール | [email protected] |
| 支払い方法 | free |
| プライバシーポリシーページのURL | https://pictureknow.com/protocol |
| 対応言語 | en,zh-CN |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "__MSG_name__",
"version": "1.0.6",
"description": "__MSG_desc__",
"icons": {
"16": "icons\/icon16.png",
"32": "icons\/icon32.png",
"48": "icons\/icon48.png",
"128": "icons\/icon128.png"
},
"content_scripts": [
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"js": [
"js\/json_content.js"
],
"run_at": "document_end",
"all_frames": true
}
],
"background": {
"service_worker": "js\/background.js"
},
"action": {
"default_icon": "icons\/icon128.png",
"default_title": "__MSG_name__",
"default_popup": "popup.html"
},
"permissions": [
"alarms",
"proxy",
"management",
"tabs",
"storage"
],
"web_accessible_resources": [
{
"matches": [
"*:\/\/*\/*"
],
"resources": [
"css\/jsonview.css",
"css\/jsonview_core.css",
"css\/json_content_error.css"
]
}
],
"host_permissions": [
" | |