Double Click Guard

Double Click Guard

Powerful extension created to get rid of your Double Clicking problems!

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Double Click Guard",
  "description": "Powerful extension created to get rid of your Double Clicking problems!",
  "version": "1.0",
  "action": {
    "default_popup": "./app/doubleclick.html",
    "default_icon": "./app/Images/icons/DoubleClickIcon.png"
  },
  "background": {
    "service_worker": "./app/background.js",
    "type": "module"
  },
  "permissions": [
    "scripting",
    "storage"
  ],
  "host_permissions": [
    "http://*/",
    "https://*/"
  ],
  "web_accessible_resources": [
    {
      "matches": [
        "<all_urls>"
      ],
      "resources": [
        ""
      ]
    }
  ]
}