Monkey Worker

Monkey Worker

This plugin can repeat your actions.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Monkey Worker",
  "browser_action": {
    "default_icon": "app-48.png",
    "default_popup": "/index.html"
  },
  "content_scripts": [
    {
      "all_frames": false,
      "js": [
        "/js/inject.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "run_at": "document_start"
    }
  ],
  "description": "This plugin can repeat your actions.",
  "manifest_version": 2,
  "permissions": [
    "tabs",
    "activeTab",
    "storage",
    "webRequest",
    "webRequestBlocking",
    "webNavigation",
    "http://*/*",
    "https://*/*"
  ],
  "icons": {
    "16": "app-16.png",
    "48": "app-48.png",
    "128": "app-128.png"
  },
  "version": "1.0.4",
  "web_accessible_resources": [
    "js/inject.js",
    "js/monkeyWorker.js",
    "js/monkeyListener.js",
    "js/elementInspector.js"
  ]
}