Disable Google Lens

Redirects Google Lens to the normal image results

Disable Google Lensคืออะไร?

Disable Google Lens เป็นส่วนขยายของ Chrome ที่พัฒนาโดย fanfare และคุณลักษณะหลักของมันคือ "Redirects Google Lens to the normal image results"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Disable Google Lens

ดาวน์โหลดไฟล์ส่วนขยาย 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
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"
            ]
        }
    ]
}