Basic JSON Formatter
Adds a page action to pretty-print JSON
Basic JSON Formatter란 무엇입니까?
Basic JSON Formatter은(는) Dr. McKay에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Adds a page action to pretty-print JSON"입니다.
확장 프로그램 스크린샷
Basic JSON Formatter 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
This add-on for Chrome adds an action to the browser toolbar, enabling you to pretty-print the contents of JSON pages with a single click. Unlike similar add-ons, this add-on does not add a fancy editor or colors or collapsibility or anything. The page after using this formatter remains valid JSON that can be copied and pasted somewhere else; it simply contains whitespace after formatting.
확장 프로그램 기본 정보
이름 | Basic JSON Formatter |
ID | ceomfncodjlgpdebgjlbpcibgbcolfln |
공식 URL | https://chromewebstore.google.com/detail/basic-json-formatter/ceomfncodjlgpdebgjlbpcibgbcolfln |
설명 | Adds a page action to pretty-print JSON |
파일 크기 | 222 KB |
설치 횟수 | 483 |
현재 버전 | 3.0.0 |
최근 업데이트 | 2022-07-07 |
출시 날짜 | 2021-05-27 |
평점 | 5.00/5 총 2 개의 평점 |
개발자 | Dr. McKay |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://github.com/DoctorMcKay/firefox-json-formatter |
도움말 페이지 URL | https://github.com/DoctorMcKay/firefox-json-formatter/issues |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Basic JSON Formatter", "version": "3.0.0", "description": "Adds a page action to pretty-print JSON", "icons": { "48": "img\/icon-48.png", "128": "img\/icon-128.png" }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "content-script.js" ] } ], "background": { "service_worker": "background.js" }, "permissions": [ "storage" ], "action": { "default_icon": { "48": "img\/icon-48.png", "128": "img\/icon-128.png" }, "default_title": "Format JSON", "default_popup": "popups\/no_json.html" }, "options_ui": { "page": "options_ui\/options.html", "browser_style": true } } |