Disable Google Lens
Redirects Google Lens to the normal image results
Τι είναι το Disable Google Lens;
Το Disable Google Lens είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον fanfare, και η κύρια λειτουργία του είναι "Redirects Google Lens to the normal image results".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Disable Google Lens
Λήψη αρχείων επέκτασης Disable Google Lens σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
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
Βασικές Πληροφορίες Επέκτασης
Όνομα | Disable Google Lens |
ID | dkapjhgpncbeiebegegdbpgfoabdkilh |
Επίσημο URL | https://chromewebstore.google.com/detail/disable-google-lens/dkapjhgpncbeiebegegdbpgfoabdkilh |
Περιγραφή | Redirects Google Lens to the normal image results |
Μέγεθος Αρχείου | 28.26 KB |
Αριθμός Εγκαταστάσεων | 10,000 |
Τρέχουσα Έκδοση | 0.1.3 |
Τελευταία Ενημέρωση | 2023-08-30 |
Ημερομηνία Δημοσίευσης | 2022-12-04 |
Αξιολόγηση | 4.35/5 Συνολικά 85 Αξιολογήσεις |
Προγραμματιστής | fanfare |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Ιστότοπος Επέκτασης | https://github.com/fanfare/disablegooglelens |
Υποστηριζόμενες Γλώσσες | 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" ] } ] } |