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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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" } |