Honeygain click for Honey

Honeygain click for Honey

Automatically clicks the honeypot if full

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Honeygain click for Honey",
  "version": "0.1",
  "description": "Automatically clicks the honeypot if full",
  "permissions": [
    "tabs"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*.honeygain.com/*"
      ],
      "js": [
        "contentScript.js"
      ],
      "run_at": "document_end"
    }
  ],
  "action": {
    "default_icon": {},
    "default_title": "Honeygain click for Honey",
    "default_popup": "popup.html"
  },
  "manifest_version": 3
}