AWS State Machine JSON Parser
Extension to make improvements to the AWS State Machine execution ui nicer
Wat is AWS State Machine JSON Parser?
AWS State Machine JSON Parser is een Chrome-extensie ontwikkeld door aeikenberry, en de belangrijkste functie is "Extension to make improvements to the AWS State Machine execution ui nicer".
Extensie Screenshots
Download het CRX-bestand van de extensie AWS State Machine JSON Parser
Download AWS State Machine JSON Parser-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
The execution details of a AWS Step Function are filled with giant json strings. This extension makes them easier to work with.
Basisinformatie over de Extensie
Naam | AWS State Machine JSON Parser |
ID | kllbjpnekodggjljlbjgaldilcpdcabj |
Officiële URL | https://chromewebstore.google.com/detail/aws-state-machine-json-pa/kllbjpnekodggjljlbjgaldilcpdcabj |
Beschrijving | Extension to make improvements to the AWS State Machine execution ui nicer |
Bestandsgrootte | 143 KB |
Aantal Installaties | 42 |
Huidige Versie | 0.0.1 |
Laatst Bijgewerkt | 2017-09-26 |
Publicatiedatum | 2017-09-26 |
Beoordeling | 5.00/5 Totaal 3 Beoordelingen |
Ontwikkelaar | aeikenberry |
[email protected] | |
Betalingswijze | free |
Help Pagina-URL | https://github.com/aeikenberry/execution-json-parser-extension |
Ondersteunde Talen | 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" } ] } |