AWS State Machine JSON Parser
Extension to make improvements to the AWS State Machine execution ui nicer
Apa itu AWS State Machine JSON Parser?
AWS State Machine JSON Parser adalah ekstensi Chrome yang dikembangkan oleh aeikenberry, dan fitur utamanya adalah "Extension to make improvements to the AWS State Machine execution ui nicer".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi AWS State Machine JSON Parser
Unduh file ekstensi AWS State Machine JSON Parser dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
The execution details of a AWS Step Function are filled with giant json strings. This extension makes them easier to work with.
Informasi Dasar Ekstensi
Nama | AWS State Machine JSON Parser |
ID | kllbjpnekodggjljlbjgaldilcpdcabj |
URL Resmi | https://chromewebstore.google.com/detail/aws-state-machine-json-pa/kllbjpnekodggjljlbjgaldilcpdcabj |
Deskripsi | Extension to make improvements to the AWS State Machine execution ui nicer |
Ukuran File | 143 KB |
Jumlah Instalasi | 42 |
Versi Saat Ini | 0.0.1 |
Terakhir Diperbarui | 2017-09-26 |
Tanggal Publikasi | 2017-09-26 |
Penilaian | 5.00/5 Total 3 Penilaian |
Pengembang | aeikenberry |
[email protected] | |
Tipe Pembayaran | free |
URL Halaman Bantuan | https://github.com/aeikenberry/execution-json-parser-extension |
Bahasa yang Didukung | 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" } ] } |