JSON Inspector - Explore your JSON files
JSON Inspector allows you to parse and explore your JSON files with ease in your browser
什麼是JSON Inspector - Explore your JSON files?
JSON Inspector - Explore your JSON files是由MUJO LLC開發的Chrome擴展程式,該擴展的主要功能是“JSON Inspector allows you to parse and explore your JSON files with ease in your browser”。
擴展截圖
下載JSON Inspector - Explore your JSON files擴展crx文件
下載JSON Inspector - Explore your JSON files擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
JSON inspector is a modern take on a JSON explorer. This allows you to view the data in the same way you would view data in you dev-tools.
There is a few new concepts:
- Get out of the way unless needed, older plugin immediately formatted JSON. This plugin keeps the page how it is to allow for easy copy paste.
- Inspect in different context, just like how you inspect in html in a different window. With this plugin we open a modal with the content inside of it to leave the original content alone while having a context to inspect.
- We are also open source!
https://github.com/mujo-code/json-inspector 擴展基本資訊
| 名稱 | |
| ID | ddjdpbdnpfkdacbbeppjhkfehopmobeg |
| 官方網址 | https://chromewebstore.google.com/detail/json-inspector-explore-yo/ddjdpbdnpfkdacbbeppjhkfehopmobeg |
| 簡介 | JSON Inspector allows you to parse and explore your JSON files with ease in your browser |
| 檔案大小 | 268 KB |
| 安裝次數 | 36 |
| 目前版本 | 1.0.0 |
| 更新時間 | 2021-07-18 |
| 上架時間 | 2021-07-18 |
| 開發者 | MUJO LLC |
| 電子郵箱 | [email protected] |
| 付費類型 | free |
| 擴展官網 | https://github.com/mujo-code/json-inspector |
| 隱私政策頁面URL | https://getmujo.com/privacy |
| 支援的語言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "__MSG_appName__",
"short_name": "__MSG_appShortName__",
"description": "__MSG_appDescription__",
"version": "1.0.0",
"manifest_version": 3,
"default_locale": "en",
"icons": {
"16": "icons\/icon-16.png",
"32": "icons\/icon-32.png",
"192": "icons\/icon-192.png",
"512": "icons\/icon-512.png"
},
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*",
"ftp:\/\/*\/*",
"file:\/\/\/*"
],
"js": [
"content.js"
]
}
],
"minimum_chrome_version": "88"
} | |