Prettify

Small extension that automatically make pages with JSON/XML/... content prettier.

Prettify क्या है?

Prettify https://tiph.io द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Small extension that automatically make pages with JSON/XML/... content prettier."।

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

screenshot

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

crx प्रारूप में Prettify एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        Quick and dirty WebExtension that automatically makes JSON pages good looking. Turns the boring-looking stock JSON rendering into a nice looking, exandable/collaspable view.

The beauty of it is that it automatically runs on every page that has its Content-type set to application/json, so you can forget you've ever installed it, and just enjoy cool-looking JSON pages !                    

एक्सटेंशन की मूल जानकारी

नाम Prettify Prettify
ID emdbenifhkcjjilaliemafklfdnpckhk
आधिकारिक URL https://chromewebstore.google.com/detail/prettify/emdbenifhkcjjilaliemafklfdnpckhk
विवरण Small extension that automatically make pages with JSON/XML/... content prettier.
फ़ाइल का आकार 13.27 KB
स्थापना संख्या 1,049
वर्तमान संस्करण 1.0.1
अंतिम अपडेट 2019-12-01
प्रकाशन तिथि 2019-11-27
रेटिंग 5.00/5 कुल 1 रेटिंग्स
डेवलपर https://tiph.io
ईमेल [email protected]
भुगतान के प्रकार free
गोपनीयता नीति पृष्ठ URL https://edt.tiph.io/privacy.html
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Prettify",
    "version": "1.0.1",
    "description": "Small extension that automatically make pages with JSON\/XML\/... content prettier.",
    "manifest_version": 2,
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "inject.js"
            ],
            "run_at": "document_start"
        }
    ]
}