Autoclicker

Autoclicker

Automatically click on element matching search criteria

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Autoclicker",
  "description": "Automatically click on element matching search criteria",
  "icons": {
    "16": "icons/autoclicker-16.png",
    "32": "icons/autoclicker-32.png",
    "48": "icons/autoclicker-48.png",
    "128": "icons/autoclicker-128.png"
  },
  "version": "0.0.5",
  "author": "xela92",
  "permissions": [
    "storage",
    "activeTab",
    "scripting",
    "webNavigation"
  ],
  "background": {
    "service_worker": "js/background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "js/clicker.js"
      ],
      "run_at": "document_idle",
      "all_frames": true
    }
  ],
  "action": {
    "default_popup": "html/popup.html"
  }
}