Automation Inspector (Extension)

Automation Inspector (Extension)

Developer tool for exercising the Chrome Automation API

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Automation Inspector (Extension)",
  "description": "Developer tool for exercising the Chrome Automation API",
  "version": "0.1.7",
  "manifest_version": 2,
  "browser_action": {
    "default_icon": "images/inspect-icon-128.png"
  },
  "automation": {
    "desktop": true
  },
  "permissions": [
    "tabs",
    "storage"
  ],
  "background": {
    "scripts": [
      "js/server/automation-tree.js",
      "js/server/automation-server.js",
      "js/extension/launch-tab.js"
    ]
  },
  "icons": {
    "128": "images/inspect-icon-128.png"
  }
}