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”。

擴展截圖

screenshot
screenshot
screenshot

下載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 Disable Google Lens
ID dkapjhgpncbeiebegegdbpgfoabdkilh
官方網址 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"
            ]
        }
    ]
}