Disable Google Lens

Redirects Google Lens to the normal image results

Co je Disable Google Lens?

Disable Google Lens je rozšíření Chrome vyvinuté fanfare, a jeho hlavní funkcí je „Redirects Google Lens to the normal image results“.

Snímky obrazovky rozšíření

screenshot
screenshot
screenshot

Stáhnout soubor CRX rozšíření Disable Google Lens

Stáhněte si soubory rozšíření Disable Google Lens ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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                    

Základní Informace o Rozšíření

Název Disable Google Lens Disable Google Lens
ID dkapjhgpncbeiebegegdbpgfoabdkilh
Oficiální URL https://chromewebstore.google.com/detail/disable-google-lens/dkapjhgpncbeiebegegdbpgfoabdkilh
Popis Redirects Google Lens to the normal image results
Velikost souboru 28.26 KB
Počet instalací 10,000
Aktuální Verze 0.1.3
Poslední Aktualizace 2023-08-30
Datum Vydání 2022-12-04
Hodnocení 4.35/5 Celkem 85 Hodnocení
Vývojář fanfare
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://github.com/fanfare/disablegooglelens
Podporované Jazyky 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"
            ]
        }
    ]
}