Disable Google Lens
Redirects Google Lens to the normal image results
Qu'est-ce que Disable Google Lens ?
Disable Google Lens est une extension Chrome développée par fanfare, et sa fonction principale est "Redirects Google Lens to the normal image results".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Disable Google Lens
Téléchargez les fichiers d'extension Disable Google Lens au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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
Informations de Base sur l'Extension
Nom | Disable Google Lens |
ID | dkapjhgpncbeiebegegdbpgfoabdkilh |
URL Officiel | https://chromewebstore.google.com/detail/disable-google-lens/dkapjhgpncbeiebegegdbpgfoabdkilh |
Description | Redirects Google Lens to the normal image results |
Taille du Fichier | 28.26 KB |
Nombre d'Installations | 10,000 |
Version Actuelle | 0.1.3 |
Dernière Mise à Jour | 2023-08-30 |
Date de Publication | 2022-12-04 |
Évaluation | 4.35/5 Total 85 Évaluations |
Développeur | fanfare |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/fanfare/disablegooglelens |
Langues Prises en Charge | 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" ] } ] } |