Jipy

Format JSON In Place. Anywhere!

Jipy란 무엇입니까?

Jipy은(는) twskj에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Format JSON In Place. Anywhere!"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Jipy 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Jipy allows you to format JSON on any page. Unlike other formatters, Jipy does not rely on the whole page being returned as JSON. Jipy works by letting you choose the portion that you want to format. This allows you to format any embeded JSON.

How to Use
==========
1. Highlight JSON payload (if the highlight is not a valid JSON, Jipy tries its best to infer the payload)
2. Choose one of the following way to format
- Click { } button on top right corner 
- Use hotkey (Alt+F)
- Right Click to bring up context menu
3. Enjoy ;-)                    

확장 프로그램 기본 정보

이름 Jipy Jipy
ID ijpoiflpbigbngjilejmkmnoglkedcjo
공식 URL https://chromewebstore.google.com/detail/jipy/ijpoiflpbigbngjilejmkmnoglkedcjo
설명 Format JSON In Place. Anywhere!
파일 크기 13.43 KB
설치 횟수 444
현재 버전 0.1.4
최근 업데이트 2019-10-11
출시 날짜 2019-10-10
평점 5.00/5 총 2 개의 평점
개발자 twskj
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/twskj/ChromeExt-JSON-In-Place
도움말 페이지 URL https://github.com/twskj/ChromeExt-JSON-In-Place/issues
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Jipy",
    "short_name": "Jipy",
    "version": "0.1.4",
    "description": "Format JSON In Place. Anywhere!",
    "author": "twskj",
    "browser_action": {
        "default_icon": {
            "16": "icon\/16.png",
            "24": "icon\/24.png",
            "32": "icon\/32.png"
        },
        "default_title": "Format Selected JSON"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "run_at": "document_start",
            "js": [
                "main.js"
            ]
        }
    ],
    "permissions": [
        "contextMenus"
    ],
    "commands": {
        "FormatJSON": {
            "suggested_key": {
                "default": "Alt+F"
            },
            "description": "Format JSON"
        },
        "FormatJSONString": {
            "suggested_key": {
                "default": "Alt+Shift+F"
            },
            "description": "Format JSON String"
        }
    },
    "icons": {
        "16": "icon\/16.png",
        "19": "icon\/19.png",
        "24": "icon\/24.png",
        "32": "icon\/32.png",
        "38": "icon\/38.png",
        "48": "icon\/48.png",
        "64": "icon\/64.png",
        "128": "icon\/128.png"
    },
    "manifest_version": 2
}