AWS State Machine JSON Parser

AWS State Machine JSON Parser

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

Merlin
Additional files are visible only to premium users

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