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 |
| 电子邮箱 | [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": [
" | |