SearchAI
Adds to start page a search with a integrated text-based AI, enabling instant dialogue and smart responses.
SearchAIคืออะไร?
SearchAI เป็นส่วนขยายของ Chrome ที่พัฒนาโดย eugene.islandagency และคุณลักษณะหลักของมันคือ "Adds to start page a search with a integrated text-based AI, enabling instant dialogue and smart responses."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย SearchAI
ดาวน์โหลดไฟล์ส่วนขยาย SearchAI ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Enhance your browsing experience with our innovative Chrome extension! It integrates a text-based AI into your start page's search bar, enabling instant dialogue and smart responses. Simply type a query followed by a question mark, and the AI will engage you directly on the start page. For standard searches without a question mark, the extension seamlessly redirects you to your preferred search engine. This intuitive tool blends AI interaction and web searching into one fluid, efficient process, revolutionizing how you seek information online. How to Use 1. Open your start page in Google Chrome. 2. To engage with the AI, type your question into the search bar and end it with a question mark. 3. For regular web searches, simply type your query without a question mark and hit enter. Privacy Note Your privacy is our priority. We do not store any conversation history, ensuring that your interactions with the AI remain confidential and secure. Popular AI Queries: "What to Ask" - "What's the weather like in Paris?" - "How do I make a chocolate cake?" - "Tips for beginner yoga poses?" - "What are the latest tech trends?" Explore, ask, and get instant AI-powered answers or continue with your usual web searches, all from one place!
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | SearchAI |
ID | ceoajhiemdnnjfbilpkblfjghmmbhbda |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/searchai/ceoajhiemdnnjfbilpkblfjghmmbhbda |
คำอธิบาย | Adds to start page a search with a integrated text-based AI, enabling instant dialogue and smart responses. |
ขนาดไฟล์ | 1.17 MB |
จำนวนการติดตั้ง | 2,535 |
เวอร์ชันปัจจุบัน | 1.2.2 |
อัปเดตครั้งล่าสุด | 2024-02-12 |
วันที่เผยแพร่ | 2023-12-18 |
คะแนน | 5.00/5 รวมทั้งหมด 1 คะแนน |
ผู้พัฒนา | eugene.islandagency |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
URL หน้านโยบายความเป็นส่วนตัว | https://aigptextension.com/policy.html |
ภาษาที่รองรับ | en,es,ru,hi,ar |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "SearchAI", "version": "1.2.2", "description": "Adds to start page a search with a integrated text-based AI, enabling instant dialogue and smart responses.", "permissions": [ "storage", "unlimitedStorage" ], "host_permissions": [ "http:\/\/localhost:3000\/*", "https:\/\/aigptextension.com\/*" ], "action": { "default_icon": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" } }, "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "default_locale": "ru", "chrome_url_overrides": { "newtab": ".\/startPage.html" }, "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "*:\/\/localhost\/*searchai*", "*:\/\/aigptextension.com\/searchai*" ], "js": [ "content.js" ], "run_at": "document_start" } ] } |