Disable Google Lens

Disable Google Lens

Redirects Google Lens to the normal image results

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "author": "fanfare",
  "name": "Disable Google Lens",
  "version": "0.1.3",
  "manifest_version": 3,
  "description": "Redirects Google Lens to the normal image results",
  "homepage_url": "https://github.com/fanfare/disablegooglelens",
  "default_locale": "en",
  "icons": {
    "16": "16.png",
    "32": "32.png",
    "48": "48.png",
    "128": "128.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "permissions": [
    "contextMenus"
  ],
  "host_permissions": [
    "https://www.google.com/*"
  ],
  "content_scripts": [
    {
      "js": [
        "content-script.js"
      ],
      "run_at": "document_start",
      "matches": [
        "https://lens.google.com/*"
      ],
      "include_globs": [
        "*uploadbyurl*",
        "*search*",
        "*v2/upload*",
        "*v3/upload*"
      ],
      "css": [
        "style.css"
      ]
    }
  ]
}