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".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Disable Google Lens
قم بتنزيل ملفات الامتداد Disable Google Lens بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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" ] } ] } |