Disable Google Lens
Redirects Google Lens to the normal image results
Disable Google Lens क्या है?
Disable Google Lens fanfare द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Redirects Google Lens to the normal image results"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Disable Google Lens एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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" ] } ] } |