Disable Google Lens
Redirects Google Lens to the normal image results
Was ist Disable Google Lens?
Disable Google Lens ist eine Chrome-Erweiterung, die von fanfare entwickelt wurde, und ihr Hauptmerkmal ist "Redirects Google Lens to the normal image results".
Erweiterungsscreenshots
Disable Google Lens-Erweiterungs-CRX-Datei herunterladen
Laden Sie Disable Google Lens-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
This extension bypasses "Google Lens" results and takes you to the normal image results like how it used to be. It also adds a "Search Google for image" context menu item that will open the image results in a new tab. Post-installation instructions for manually removing the old "Search image with Google Lens" context menu item (the one that opens results in the Side Bar) can be found at https://github.com/fanfare/disablegooglelens/blob/master/CHROME.md
Grundlegende Informationen zur Erweiterung
Name | Disable Google Lens |
ID | dkapjhgpncbeiebegegdbpgfoabdkilh |
Offizielle URL | https://chromewebstore.google.com/detail/disable-google-lens/dkapjhgpncbeiebegegdbpgfoabdkilh |
Beschreibung | Redirects Google Lens to the normal image results |
Dateigröße | 28.26 KB |
Installationsanzahl | 10,000 |
Aktuelle Version | 0.1.3 |
Letztes Update | 2023-08-30 |
Veröffentlichungsdatum | 2022-12-04 |
Bewertung | 4.35/5 Insgesamt 85 Bewertungen |
Entwickler | fanfare |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://github.com/fanfare/disablegooglelens |
Unterstützte Sprachen | en |
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": { "128": "128.png", "48": "48.png", "32": "32.png", "16": "16.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" ] } ] } |