Disable Google Lens
Redirects Google Lens to the normal image results
什么是Disable Google Lens?
Disable Google Lens是由fanfare开发的Chrome扩展程序,该扩展的主要功能是“Redirects Google Lens to the normal image results”。
扩展截图
下载Disable Google Lens扩展crx文件
下载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" ] } ] } |