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ファイルをダウンロード

JSON Formatter for API拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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
Eメール [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": [
        "*:\/\/*\/*",
        ""
    ]
}