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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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"
    }
}