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"입니다.

확장 프로그램 스크린샷

screenshot

AWS State Machine JSON Parser 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
        }
    ]
}