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