AWS State Machine JSON Parser
Extension to make improvements to the AWS State Machine execution ui nicer
Cos'è AWS State Machine JSON Parser?
AWS State Machine JSON Parser è un'estensione di Chrome sviluppata da aeikenberry, e la sua funzione principale è "Extension to make improvements to the AWS State Machine execution ui nicer".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione AWS State Machine JSON Parser
Scarica i file di estensione AWS State Machine JSON Parser in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
The execution details of a AWS Step Function are filled with giant json strings. This extension makes them easier to work with.
Informazioni di Base sull'Estensione
Nome | AWS State Machine JSON Parser |
ID | kllbjpnekodggjljlbjgaldilcpdcabj |
URL Ufficiale | https://chromewebstore.google.com/detail/aws-state-machine-json-pa/kllbjpnekodggjljlbjgaldilcpdcabj |
Descrizione | Extension to make improvements to the AWS State Machine execution ui nicer |
Dimensione del File | 143 KB |
Conteggio Installazioni | 42 |
Versione Corrente | 0.0.1 |
Ultimo Aggiornamento | 2017-09-26 |
Data di Pubblicazione | 2017-09-26 |
Valutazione | 5.00/5 Totale 3 Valutazioni |
Sviluppatore | aeikenberry |
[email protected] | |
Tipo di Pagamento | free |
URL della Pagina di Aiuto | https://github.com/aeikenberry/execution-json-parser-extension |
Lingue Supportate | 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" } ] } |