AI Added to Search
Add generative AI results to your search results.
AI Added to Searchとは何ですか?
AI Added to Searchはtejalpatwardhanによって開発されたChromeの拡張機能で、その主な機能は「Add generative AI results to your search results.」です。
拡張機能のスクリーンショット
AI Added to Search拡張機能のCRXファイルをダウンロード
AI Added to Search拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Switching between AI services and search results can be a hassle. Now, search in both at once! This extension adds an AI answer to the top of your search results. Feel free to use always, or toggle to "when you click the extension" to use more selectively.
拡張機能の基本情報
名前 | AI Added to Search |
ID | ecnjfpolicbkccohcmkkncodalmiecjh |
公式URL | https://chromewebstore.google.com/detail/ai-added-to-search/ecnjfpolicbkccohcmkkncodalmiecjh |
説明 | Add generative AI results to your search results. |
ファイルサイズ | 48.27 KB |
インストール数 | 90 |
現在のバージョン | 2.0 |
最終更新日 | 2023-05-16 |
公開日 | 2023-03-31 |
評価 | 5.00/5 合計 5 レビュー |
開発者 | tejalpatwardhan |
Eメール | [email protected] |
支払い方法 | free |
対応言語 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "AI Added to Search", "version": "2.0", "description": "Add generative AI results to your search results.", "icons": { "16": "icons\/16.png", "32": "icons\/32.png", "64": "icons\/64.png", "128": "icons\/128.png", "256": "icons\/256.png", "512": "icons\/512.png" }, "host_permissions": [ "https:\/\/*.google.com\/*" ], "content_scripts": [ { "matches": [ "https:\/\/*.google.com\/search?q=*" ], "js": [ "content.js" ] } ], "background": { "service_worker": "background.js" } } |