PickyJSON

JSON formatting and quick access to PickyJSON.com.

O que é PickyJSON?

PickyJSON é uma extensão do Chrome desenvolvida por danjford, e sua principal característica é "JSON formatting and quick access to PickyJSON.com.".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão PickyJSON

Baixe arquivos de extensão PickyJSON no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome PickyJSON PickyJSON
ID cdbfbhnfamigibakdbmmnihbpjldojgl
URL Oficial https://chrome.google.com/webstore/detail/pickyjson/cdbfbhnfamigibakdbmmnihbpjldojgl
Descrição JSON formatting and quick access to PickyJSON.com.
Tamanho do Arquivo 382 KB
Contagem de Instalações 83
Versão Atual 0.0.9
Última Atualização 2017-03-24
Data de Publicação 2017-03-24
Classificação 5.00/5 Total de 3 Avaliações
Desenvolvedor danjford
Tipo de Pagamento free
Site da Extensão http://pickyjson.com/
URL da Página de Ajuda https://github.com/danjford/pickyjson-extension/issues
Idiomas Suportados 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"
}