ActivIT Automatron

ActivIT Automatron

Scripting web browsing automation tool.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "ActivIT Automatron",
  "short_name": "Automatron",
  "description": "Scripting web browsing automation tool.",
  "version": "0.1.3",
  "browser_action": {
    "default_popup": "popup/popup.html"
  },
  "background": {
    "page": "background/background.html",
    "persistent": true
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "other/jquery-3.1.1.min.js",
        "content/instructions/helpers.js",
        "content/instructions/main.js",
        "content/content.js"
      ]
    }
  ],
  "devtools_page": "devtool/devtools.html",
  "permissions": [
    "tabs",
    "storage"
  ],
  "web_accessible_resources": [
    "other/*.png"
  ],
  "icons": {
    "16": "other/icon16.png",
    "128": "other/icon128.png"
  },
  "minimum_chrome_version": "23",
  "manifest_version": 2
}