AWS State Machine JSON Parser
Extension to make improvements to the AWS State Machine execution ui nicer
Qu'est-ce que AWS State Machine JSON Parser ?
AWS State Machine JSON Parser est une extension Chrome développée par aeikenberry, et sa fonction principale est "Extension to make improvements to the AWS State Machine execution ui nicer".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension AWS State Machine JSON Parser
Téléchargez les fichiers d'extension AWS State Machine JSON Parser au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
The execution details of a AWS Step Function are filled with giant json strings. This extension makes them easier to work with.
Informations de Base sur l'Extension
Nom | AWS State Machine JSON Parser |
ID | kllbjpnekodggjljlbjgaldilcpdcabj |
URL Officiel | https://chromewebstore.google.com/detail/aws-state-machine-json-pa/kllbjpnekodggjljlbjgaldilcpdcabj |
Description | Extension to make improvements to the AWS State Machine execution ui nicer |
Taille du Fichier | 143 KB |
Nombre d'Installations | 42 |
Version Actuelle | 0.0.1 |
Dernière Mise à Jour | 2017-09-26 |
Date de Publication | 2017-09-26 |
Évaluation | 5.00/5 Total 3 Évaluations |
Développeur | aeikenberry |
[email protected] | |
Type de Paiement | free |
URL de la Page d'Aide | https://github.com/aeikenberry/execution-json-parser-extension |
Langues Prises en Charge | 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" } ] } |