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. 擴展基本資訊
| 名稱 | |
| ID | kllbjpnekodggjljlbjgaldilcpdcabj |
| 官方網址 | 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"
}
]
} | |