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
扩展基本信息
名称 | JSON Inspector - Explore your JSON files |
ID | ddjdpbdnpfkdacbbeppjhkfehopmobeg |
官方URL | 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" } |