Disable Google Lens
Redirects Google Lens to the normal image results
Disable Google Lens là gì?
Disable Google Lens là một tiện ích mở rộng Chrome được phát triển bởi fanfare, và tính năng chính của nó là "Redirects Google Lens to the normal image results".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Disable Google Lens
Tải xuống các tệp mở rộng Disable Google Lens dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Disable Google Lens |
ID | dkapjhgpncbeiebegegdbpgfoabdkilh |
URL Chính Thức | https://chromewebstore.google.com/detail/disable-google-lens/dkapjhgpncbeiebegegdbpgfoabdkilh |
Mô tả | Redirects Google Lens to the normal image results |
Kích Thước Tệp | 28.26 KB |
Số Lần Cài Đặt | 10,000 |
Phiên Bản Hiện Tại | 0.1.3 |
Cập Nhật Lần Cuối | 2023-08-30 |
Ngày Phát Hành | 2022-12-04 |
Đánh Giá | 4.35/5 Tổng số 85 Đánh Giá |
Nhà Phát Triển | fanfare |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/fanfare/disablegooglelens |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } ] } |