Click-free Browsing

Click-free Browsing

Enables browsing using only mouse movements

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Click-free Browsing",
  "description": "Enables browsing using only mouse movements",
  "version": "2.6",
  "manifest_version": 3,
  "background": {
    "service_worker": "background.js"
  },
  "options_page": "options.html",
  "action": {
    "default_title": "Click-free Browsing",
    "default_icon": "/icons/cfb.png",
    "default_popup": "popup.html"
  },
  "permissions": [
    "tabs",
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "click_free_browsing.js",
        "jquery-3.7.1.min.js"
      ],
      "run_at": "document_start"
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "/close_yellow.png",
        "/close_red.png",
        "/icons/*"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ]
}