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 |
电子邮箱 | [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" } ] } |