AWS State Machine JSON Parser
Extension to make improvements to the AWS State Machine execution ui nicer
AWS State Machine JSON Parserとは何ですか?
AWS State Machine JSON Parserはaeikenberryによって開発されたChromeの拡張機能で、その主な機能は「Extension to make improvements to the AWS State Machine execution ui nicer」です。
拡張機能のスクリーンショット
AWS State Machine JSON Parser拡張機能のCRXファイルをダウンロード
AWS State Machine JSON Parser拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
The execution details of a AWS Step Function are filled with giant json strings. This extension makes them easier to work with.
拡張機能の基本情報
名前 | AWS State Machine JSON Parser |
ID | kllbjpnekodggjljlbjgaldilcpdcabj |
公式URL | https://chromewebstore.google.com/detail/aws-state-machine-json-pa/kllbjpnekodggjljlbjgaldilcpdcabj |
説明 | Extension to make improvements to the AWS State Machine execution ui nicer |
ファイルサイズ | 143 KB |
インストール数 | 42 |
現在のバージョン | 0.0.1 |
最終更新日 | 2017-09-26 |
公開日 | 2017-09-26 |
評価 | 5.00/5 合計 3 レビュー |
開発者 | aeikenberry |
Eメール | [email protected] |
支払い方法 | free |
ヘルプページのURL | https://github.com/aeikenberry/execution-json-parser-extension |
対応言語 | 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" } ] } |