PickyJSON

JSON formatting and quick access to PickyJSON.com.

Cos'è PickyJSON?

PickyJSON è un'estensione di Chrome sviluppata da danjford, e la sua funzione principale è "JSON formatting and quick access to PickyJSON.com.".

Screenshot dell'Estensione

screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione PickyJSON

Scarica i file di estensione PickyJSON in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome PickyJSON PickyJSON
ID cdbfbhnfamigibakdbmmnihbpjldojgl
URL Ufficiale https://chrome.google.com/webstore/detail/pickyjson/cdbfbhnfamigibakdbmmnihbpjldojgl
Descrizione JSON formatting and quick access to PickyJSON.com.
Dimensione del File 382 KB
Conteggio Installazioni 83
Versione Corrente 0.0.9
Ultimo Aggiornamento 2017-03-24
Data di Pubblicazione 2017-03-24
Valutazione 5.00/5 Totale 3 Valutazioni
Sviluppatore danjford
Tipo di Pagamento free
Sito Web dell'Estensione http://pickyjson.com/
URL della Pagina di Aiuto https://github.com/danjford/pickyjson-extension/issues
Lingue Supportate 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"
}