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」です。
拡張機能のスクリーンショット
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 拡張機能の基本情報
| 名前 | |
| 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 |
| Eメール | [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"
]
}
]
} | |