PickyJSON

JSON formatting and quick access to PickyJSON.com.

What is PickyJSON?

PickyJSON is a Chrome extension developed by danjford, and its main feature is "JSON formatting and quick access to PickyJSON.com.".

Extension Screenshots

screenshot
screenshot
screenshot

Download PickyJSON Extension CRX File

Download PickyJSON extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name PickyJSON PickyJSON
ID cdbfbhnfamigibakdbmmnihbpjldojgl
Official URL https://chrome.google.com/webstore/detail/pickyjson/cdbfbhnfamigibakdbmmnihbpjldojgl
Description JSON formatting and quick access to PickyJSON.com.
File Size 382 KB
Installation Count 83
Current Version 0.0.9
Last Updated 2017-03-24
Publish Date 2017-03-24
Rating 5.00/5 Total 3 Ratings
Developer danjford
Payment Type free
Extension Website http://pickyjson.com/
Help Page URL https://github.com/danjford/pickyjson-extension/issues
Supported Languages 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"
}