PickyJSON

JSON formatting and quick access to PickyJSON.com.

¿Qué es PickyJSON?

PickyJSON es una extensión de Chrome desarrollada por danjford, y su función principal es "JSON formatting and quick access to PickyJSON.com.".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión PickyJSON

Descarga archivos de extensión PickyJSON en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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.                    

Información Básica de la Extensión

Nombre PickyJSON PickyJSON
ID cdbfbhnfamigibakdbmmnihbpjldojgl
URL Oficial https://chrome.google.com/webstore/detail/pickyjson/cdbfbhnfamigibakdbmmnihbpjldojgl
Descripción JSON formatting and quick access to PickyJSON.com.
Tamaño del Archivo 382 KB
Cantidad de Instalaciones 83
Versión Actual 0.0.9
Última Actualización 2017-03-24
Fecha de Publicación 2017-03-24
Calificación 5.00/5 Total de 3 Calificaciones
Desarrollador danjford
Tipo de Pago free
Sitio Web de la Extensión http://pickyjson.com/
URL de la Página de Ayuda https://github.com/danjford/pickyjson-extension/issues
Idiomas Soportados 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"
}