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 |
官方網址 | 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 |
電子郵箱 | [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" } } |