JSON Formatter for API

Makes API easy to test and makes json esay to read. Open source.

JSON Formatter for API란 무엇입니까?

JSON Formatter for API은(는) mouse-man에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Makes API easy to test and makes json esay to read. Open source."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

JSON Formatter for API 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Use json formatter to makes api ebay to test.
FEATURES
   •   GET params & POST params & json input
   •   JSON & JSONP support
   •   Syntax highlighting
   •   Collapsible trees, with indent guides
   •   Clickable URLs
   •   Toggle between raw and parsed JSON
   •   Works on any valid JSON page – URL doesn't matter
   •   Works on local files too (if you enable this in chrome://extensions)
   •   You can inspect the JSON by typing "json" in the console

GET request formatter such as

GET
a=1
b=2
 
and then click run button to send get request.

POST request formatter such as 

HEADER
header_key: some header information
POST
a=1
b:2
c=3&d=4

and then click run button to send post request

It's simple way to make the api test to esay and very high efficiency.                    

확장 프로그램 기본 정보

이름 JSON Formatter for API JSON Formatter for API
ID ipofikknncgcohpploljmbmpkgamedmi
공식 URL https://chromewebstore.google.com/detail/json-formatter-for-api/ipofikknncgcohpploljmbmpkgamedmi
설명 Makes API easy to test and makes json esay to read. Open source.
파일 크기 55.46 KB
설치 횟수 1,055
현재 버전 1.0.0
최근 업데이트 2019-11-27
출시 날짜 2019-11-26
평점 5.00/5 총 1 개의 평점
개발자 mouse-man
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "JSON Formatter for API",
    "version": "1.0.0",
    "manifest_version": 2,
    "description": "Makes API easy to test and makes json esay to read. Open source.",
    "minimum_chrome_version": "21",
    "icons": {
        "16": "icons\/16.png",
        "48": "icons\/48.png",
        "128": "icons\/128.png"
    },
    "author": {
        "name": "mousedo",
        "birth": 2018
    },
    "browser_action": {
        "default_icon": {
            "19": "icons\/19.png",
            "38": "icons\/38.png"
        },
        "default_title": "post something",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "js\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/content.js"
            ],
            "run_at": "document_start"
        }
    ],
    "permissions": [
        "*:\/\/*\/*",
        ""
    ]
}