AWS State Machine JSON Parser

Extension to make improvements to the AWS State Machine execution ui nicer

AWS State Machine JSON Parser là gì?

AWS State Machine JSON Parser là một tiện ích mở rộng Chrome được phát triển bởi aeikenberry, và tính năng chính của nó là "Extension to make improvements to the AWS State Machine execution ui nicer".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng AWS State Machine JSON Parser

Tải xuống các tệp mở rộng AWS State Machine JSON Parser dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        The execution details of a AWS Step Function are filled with giant json strings. This extension makes them easier to work with.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên AWS State Machine JSON Parser AWS State Machine JSON Parser
ID kllbjpnekodggjljlbjgaldilcpdcabj
URL Chính Thức https://chromewebstore.google.com/detail/aws-state-machine-json-pa/kllbjpnekodggjljlbjgaldilcpdcabj
Mô tả Extension to make improvements to the AWS State Machine execution ui nicer
Kích Thước Tệp 143 KB
Số Lần Cài Đặt 42
Phiên Bản Hiện Tại 0.0.1
Cập Nhật Lần Cuối 2017-09-26
Ngày Phát Hành 2017-09-26
Đánh Giá 5.00/5 Tổng số 3 Đánh Giá
Nhà Phát Triển aeikenberry
Email [email protected]
Loại Thanh Toán free
URL Trang Trợ Giúp https://github.com/aeikenberry/execution-json-parser-extension
Ngôn Ngữ Được Hỗ Trợ 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"
        }
    ]
}