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 |
电子邮箱 | [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" } } |