AWS State Machine JSON Parser

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

Hvad er AWS State Machine JSON Parser?

AWS State Machine JSON Parser er en Chrome-udvidelse udviklet af aeikenberry, og dens hovedfunktion er "Extension to make improvements to the AWS State Machine execution ui nicer".

Udvidelsesskærmbilleder

screenshot

Download AWS State Machine JSON Parser-udvidelses-CRX-fil

Download AWS State Machine JSON Parser-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

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

Grundlæggende oplysninger om udvidelsen

Navn AWS State Machine JSON Parser AWS State Machine JSON Parser
ID kllbjpnekodggjljlbjgaldilcpdcabj
Officiel URL https://chromewebstore.google.com/detail/aws-state-machine-json-pa/kllbjpnekodggjljlbjgaldilcpdcabj
Beskrivelse Extension to make improvements to the AWS State Machine execution ui nicer
Filstørrelse 143 KB
Antal Installationer 42
Nuværende Version 0.0.1
Senest Opdateret 2017-09-26
Udgivelsesdato 2017-09-26
Bedømmelse 5.00/5 Samlet 3 Bedømmelser
Udvikler aeikenberry
E-mail [email protected]
Betalingsmetode free
Hjælpeside-URL https://github.com/aeikenberry/execution-json-parser-extension
Understøttede Sprog 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"
        }
    ]
}