AWS State Machine JSON Parser

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

Co je AWS State Machine JSON Parser?

AWS State Machine JSON Parser je rozšíření Chrome vyvinuté aeikenberry, a jeho hlavní funkcí je „Extension to make improvements to the AWS State Machine execution ui nicer“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření AWS State Machine JSON Parser

Stáhněte si soubory rozšíření AWS State Machine JSON Parser ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

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

Základní Informace o Rozšíření

Název AWS State Machine JSON Parser AWS State Machine JSON Parser
ID kllbjpnekodggjljlbjgaldilcpdcabj
Oficiální URL https://chromewebstore.google.com/detail/aws-state-machine-json-pa/kllbjpnekodggjljlbjgaldilcpdcabj
Popis Extension to make improvements to the AWS State Machine execution ui nicer
Velikost souboru 143 KB
Počet instalací 42
Aktuální Verze 0.0.1
Poslední Aktualizace 2017-09-26
Datum Vydání 2017-09-26
Hodnocení 5.00/5 Celkem 3 Hodnocení
Vývojář aeikenberry
E-mail [email protected]
Typ Platby free
URL Stránky Nápovědy https://github.com/aeikenberry/execution-json-parser-extension
Podporované Jazyky 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"
        }
    ]
}