Auto Clicker

Auto Clicker

Automate Clicks

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Auto Clicker",
  "description": "Automate Clicks",
  "version": "3.0",
  "action": {
    "default_popup": "popup.html",
    "default_title": "Auto Clicker"
  },
  "icons": {
    "16": "/img/icon-128.png",
    "32": "/img/icon-128.png",
    "48": "/img/icon-128.png",
    "128": "/img/icon-128.png"
  },
  "manifest_version": 3,
  "background": {
    "service_worker": "js/background.js"
  },
  "permissions": [
    "storage"
  ],
  "content_scripts": [
    {
      "run_at": "document_end",
      "matches": [
        "<all_urls>"
      ],
      "css": [
        "css/content.css"
      ],
      "js": [
        "js/common.js",
        "js/AutoClicker.js"
      ]
    }
  ]
}