AWS State Machine JSON Parser

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

What is AWS State Machine JSON Parser?

AWS State Machine JSON Parser is a Chrome extension developed by aeikenberry, and its main feature is "Extension to make improvements to the AWS State Machine execution ui nicer".

Extension Screenshots

screenshot

Download AWS State Machine JSON Parser Extension CRX File

Download AWS State Machine JSON Parser extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

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

Extension Basic Information

Name AWS State Machine JSON Parser AWS State Machine JSON Parser
ID kllbjpnekodggjljlbjgaldilcpdcabj
Official URL https://chromewebstore.google.com/detail/aws-state-machine-json-pa/kllbjpnekodggjljlbjgaldilcpdcabj
Description Extension to make improvements to the AWS State Machine execution ui nicer
File Size 143 KB
Installation Count 42
Current Version 0.0.1
Last Updated 2017-09-26
Publish Date 2017-09-26
Rating 5.00/5 Total 3 Ratings
Developer aeikenberry
Email [email protected]
Payment Type free
Help Page URL https://github.com/aeikenberry/execution-json-parser-extension
Supported Languages 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"
        }
    ]
}