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


{
  "author": "fanfare",
  "name": "Disable Google Lens",
  "version": "0.1.2",
  "manifest_version": 2,
  "description": "Redirects Google Lens to the normal image results",
  "homepage_url": "https://github.com/fanfare/disablegooglelens",
  "default_locale": "en",
  "icons": {
    "32": "32.png",
    "48": "48.png",
    "128": "128.png"
  },
  "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"
      ]
    }
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "{ea8e9a11-7d72-4b89-8aec-a0a3ac38ddef}"
    }
  }
}