PickyJSON

JSON formatting and quick access to PickyJSON.com.

PickyJSON क्या है?

PickyJSON danjford द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "JSON formatting and quick access to PickyJSON.com."।

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

screenshot
screenshot
screenshot

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

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

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

                        This is a chrome extension that provides you with:

- JSON highlighting
  - Collapsible Objects and Arrays
  - An input which shows you the path to the attribute in the JSON

- Configuration of the Extension

- Quick access to pickyjson.com!
  - Select JSON, right click and click "Copy to PickyJSON"
  - On a page where there is only JSON in the body, a green notification will appear on the badge. Click the badge to be taken to pickyjson.com with that JSON.                    

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

नाम PickyJSON PickyJSON
ID cdbfbhnfamigibakdbmmnihbpjldojgl
आधिकारिक URL https://chrome.google.com/webstore/detail/pickyjson/cdbfbhnfamigibakdbmmnihbpjldojgl
विवरण JSON formatting and quick access to PickyJSON.com.
फ़ाइल का आकार 382 KB
स्थापना संख्या 83
वर्तमान संस्करण 0.0.9
अंतिम अपडेट 2017-03-24
प्रकाशन तिथि 2017-03-24
रेटिंग 5.00/5 कुल 3 रेटिंग्स
डेवलपर danjford
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट http://pickyjson.com/
सहायता पृष्ठ URL https://github.com/danjford/pickyjson-extension/issues
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "PickyJSON",
    "short_name": "PickyJSON",
    "version": "0.0.9",
    "description": "JSON formatting and quick access to PickyJSON.com.",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/ractive.js",
                "js\/picky-highlight.js",
                "js\/clipboard.js",
                "js\/main.js"
            ],
            "run_at": "document_start"
        }
    ],
    "web_accessible_resources": [
        "css\/picky-highlight.css",
        "css\/style.css"
    ],
    "permissions": [
        "tabs",
        "storage",
        "activeTab",
        "contextMenus"
    ],
    "background": {
        "scripts": [
            "js\/background.js"
        ]
    },
    "browser_action": {
        "default_icon": "img\/icon.png"
    },
    "icons": {
        "128": ".\/img\/icon.png"
    },
    "homepage_url": "https:\/\/github.com\/danjford\/pickyjson-extension",
    "options_page": "options.html"
}