Jipy

Format JSON In Place. Anywhere!

Jipyคืออะไร?

Jipy เป็นส่วนขยายของ Chrome ที่พัฒนาโดย twskj และคุณลักษณะหลักของมันคือ "Format JSON In Place. Anywhere!"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Jipy

ดาวน์โหลดไฟล์ส่วนขยาย Jipy ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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
}