Jipy

Format JSON In Place. Anywhere!

Jipy क्या है?

Jipy twskj द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Format JSON In Place. Anywhere!"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Jipy एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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
}