AWS State Machine JSON Parser

Extension to make improvements to the AWS State Machine execution ui nicer

O que é AWS State Machine JSON Parser?

AWS State Machine JSON Parser é uma extensão do Chrome desenvolvida por aeikenberry, e sua principal característica é "Extension to make improvements to the AWS State Machine execution ui nicer".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão AWS State Machine JSON Parser

Baixe arquivos de extensão AWS State Machine JSON Parser 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

                        The execution details of a AWS Step Function are filled with giant json strings. This extension makes them easier to work with.                    

Informações Básicas da Extensão

Nome AWS State Machine JSON Parser AWS State Machine JSON Parser
ID kllbjpnekodggjljlbjgaldilcpdcabj
URL Oficial https://chromewebstore.google.com/detail/aws-state-machine-json-pa/kllbjpnekodggjljlbjgaldilcpdcabj
Descrição Extension to make improvements to the AWS State Machine execution ui nicer
Tamanho do Arquivo 143 KB
Contagem de Instalações 42
Versão Atual 0.0.1
Última Atualização 2017-09-26
Data de Publicação 2017-09-26
Classificação 5.00/5 Total de 3 Avaliações
Desenvolvedor aeikenberry
Email [email protected]
Tipo de Pagamento free
URL da Página de Ajuda https://github.com/aeikenberry/execution-json-parser-extension
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "AWS State Machine JSON Parser",
    "version": "0.0.1",
    "manifest_version": 2,
    "description": "Extension to make improvements to the AWS State Machine execution ui nicer",
    "homepage_url": "http:\/\/github.com\/aeikenberry\/execution-json-parser-extension",
    "icons": {
        "128": "icons\/icon128.png"
    },
    "default_locale": "en",
    "permissions": [
        "https:\/\/console.aws.amazon.com\/states\/*",
        "declarativeContent"
    ],
    "background": {
        "scripts": [
            "src\/background.js"
        ],
        "persistent": false
    },
    "page_action": {
        "default_icon": "icons\/icon19.png",
        "default_title": "Parsing your json"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/console.aws.amazon.com\/states\/*"
            ],
            "js": [
                "js\/jquery\/jquery.js",
                "js\/viewer.js",
                "src\/inject\/inject.js"
            ],
            "css": [
                "css\/viewer.css"
            ],
            "run_at": "document_idle"
        }
    ]
}