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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย aeikenberry และคุณลักษณะหลักของมันคือ "Extension to make improvements to the AWS State Machine execution ui nicer"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย AWS State Machine JSON Parser

ดาวน์โหลดไฟล์ส่วนขยาย 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 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"
        }
    ]
}