AI Added to Search

Add generative AI results to your search results.

O que é AI Added to Search?

AI Added to Search é uma extensão do Chrome desenvolvida por tejalpatwardhan, e sua principal característica é "Add generative AI results to your search results.".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão AI Added to Search

Baixe arquivos de extensão AI Added to Search no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome AI Added to Search AI Added to Search
ID ecnjfpolicbkccohcmkkncodalmiecjh
URL Oficial https://chromewebstore.google.com/detail/ai-added-to-search/ecnjfpolicbkccohcmkkncodalmiecjh
Descrição Add generative AI results to your search results.
Tamanho do Arquivo 48.27 KB
Contagem de Instalações 90
Versão Atual 2.0
Última Atualização 2023-05-16
Data de Publicação 2023-03-31
Classificação 5.00/5 Total de 5 Avaliações
Desenvolvedor tejalpatwardhan
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados 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"
    }
}