PickyJSON

JSON formatting and quick access to PickyJSON.com.

Wat is PickyJSON?

PickyJSON is een Chrome-extensie ontwikkeld door danjford, en de belangrijkste functie is "JSON formatting and quick access to PickyJSON.com.".

Extensie Screenshots

screenshot
screenshot
screenshot

Download het CRX-bestand van de extensie PickyJSON

Download PickyJSON-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam PickyJSON PickyJSON
ID cdbfbhnfamigibakdbmmnihbpjldojgl
Officiële URL https://chrome.google.com/webstore/detail/pickyjson/cdbfbhnfamigibakdbmmnihbpjldojgl
Beschrijving JSON formatting and quick access to PickyJSON.com.
Bestandsgrootte 382 KB
Aantal Installaties 83
Huidige Versie 0.0.9
Laatst Bijgewerkt 2017-03-24
Publicatiedatum 2017-03-24
Beoordeling 5.00/5 Totaal 3 Beoordelingen
Ontwikkelaar danjford
Betalingswijze free
Extensiewebsite http://pickyjson.com/
Help Pagina-URL https://github.com/danjford/pickyjson-extension/issues
Ondersteunde Talen 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"
}