AWS State Machine JSON Parser

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

Co to jest AWS State Machine JSON Parser?

AWS State Machine JSON Parser to rozszerzenie Chrome opracowane przez aeikenberry, a jego główną funkcją jest „Extension to make improvements to the AWS State Machine execution ui nicer”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia AWS State Machine JSON Parser

Pobierz pliki rozszerzeń AWS State Machine JSON Parser w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

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

Podstawowe informacje o rozszerzeniu

Nazwa AWS State Machine JSON Parser AWS State Machine JSON Parser
ID kllbjpnekodggjljlbjgaldilcpdcabj
Oficjalny URL https://chromewebstore.google.com/detail/aws-state-machine-json-pa/kllbjpnekodggjljlbjgaldilcpdcabj
Opis Extension to make improvements to the AWS State Machine execution ui nicer
Rozmiar pliku 143 KB
Liczba instalacji 42
Aktualna Wersja 0.0.1
Ostatnia Aktualizacja 2017-09-26
Data Publikacji 2017-09-26
Ocena 5.00/5 Łącznie 3 Oceny
Deweloper aeikenberry
E-mail [email protected]
Typ Płatności free
Adres URL Strony Pomocy https://github.com/aeikenberry/execution-json-parser-extension
Obsługiwane Języki 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"
        }
    ]
}