AI Added to Search

Add generative AI results to your search results.

AI Added to Searchคืออะไร?

AI Added to Search เป็นส่วนขยายของ Chrome ที่พัฒนาโดย tejalpatwardhan และคุณลักษณะหลักของมันคือ "Add generative AI results to your search results."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย AI Added to Search

ดาวน์โหลดไฟล์ส่วนขยาย 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 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"
    }
}