Webzapper: Browser Remote Control

Webzapper: Browser Remote Control

Remote control your browser without a mouse and keyboard.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Webzapper: Browser Remote Control",
  "description": "Remote control your browser without a mouse and keyboard.",
  "version": "1.2.3",
  "icons": {
    "16": "icons/icon-16x16.png",
    "48": "icons/icon-48x48.png",
    "128": "icons/icon-128x128.png"
  },
  "browser_action": {
    "default_popup": "popup.html",
    "default_title": "Webzapper"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "content.min.js"
      ],
      "run_at": "document_start"
    }
  ],
  "background": {
    "scripts": [
      "background.min.js"
    ]
  }
}