CloudWatch Synthetics Recorder

CloudWatch Synthetics Recorder

Record user actions and generate CloudWatch Synthetics Canary scripts.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "CloudWatch Synthetics Recorder",
  "version": "0.0.2",
  "manifest_version": 2,
  "description": "Record user actions and generate CloudWatch Synthetics Canary scripts.",
  "permissions": [
    "storage",
    "webNavigation",
    "activeTab",
    "<all_urls>"
  ],
  "icons": {
    "16": "images/16x16-orangebot.png",
    "48": "images/48x48-orangebot.png",
    "128": "images/128x128-orangebot.png"
  },
  "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
  "browser_action": {
    "default_icon": "images/128x128-orangebot.png",
    "default_title": "Cloudwatch Synthetics Recorder",
    "default_popup": "index.html"
  },
  "web_accessible_resources": [
    "images/product-icon-16.png"
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  }
}