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 |
| 官方網址 | 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 |
| 電子郵箱 | [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": [
" | |