Bing AI for Chrome

Allows using Bing AI chatbot with Google Chrome and other Chromium browsers.

¿Qué es Bing AI for Chrome?

Bing AI for Chrome es una extensión de Chrome desarrollada por Patrik Martinko, y su función principal es "Allows using Bing AI chatbot with Google Chrome and other Chromium browsers.".

Capturas de Pantalla de la Extensión

screenshot
screenshot

Descargar Archivo CRX de la Extensión Bing AI for Chrome

Descarga archivos de extensión Bing AI for Chrome en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        Microsoft forces to use Microsoft Edge for Bing with Copilot AI (Chat GPT v4) and limits the other browsers. This extension removes the limits of Bing with Colipot AI chatbot with Google Chrome and other Chromium browsers by setting appropriate HTTP headers for the bing.com domain.

Please try to disable all other browser extensions because many extensions (VPNs, ad blockers, cookies, ...) break the Bing AI functionality.

-- Brave Browser

The latest version of Brave has a bug that breaks the functionality so please download and install the separate package manually (Chrome Webstore doesn't support extensions with manifest v2).

https://github.com/patrik-martinko/app-bing-ai-for-chrome#brave-browser                    

Información Básica de la Extensión

Nombre Bing AI for Chrome Bing AI for Chrome
ID oofdkcckpabclngcdjnkhlldcfadlfmh
URL Oficial https://chromewebstore.google.com/detail/bing-ai-for-chrome/oofdkcckpabclngcdjnkhlldcfadlfmh
Descripción Allows using Bing AI chatbot with Google Chrome and other Chromium browsers.
Tamaño del Archivo 24.79 KB
Cantidad de Instalaciones 44,693
Versión Actual 1.1.0
Última Actualización 2024-01-23
Fecha de Publicación 2023-04-26
Calificación 3.48/5 Total de 42 Calificaciones
Desarrollador Patrik Martinko
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://github.com/patrik-martinko/app-bing-ai-for-chrome
URL de la Página de Ayuda https://github.com/patrik-martinko/app-bing-ai-for-chrome/issues
Idiomas Soportados en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Bing AI for Chrome",
    "description": "Allows using Bing AI chatbot with Google Chrome and other Chromium browsers.",
    "version": "1.1.0",
    "permissions": [
        "declarativeNetRequest"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.bing.com\/*"
            ],
            "js": [
                "script.js"
            ]
        }
    ],
    "host_permissions": [
        "https:\/\/*.bing.com\/*"
    ],
    "icons": {
        "16": "icon-16.png",
        "48": "icon-48.png",
        "128": "icon-128.png"
    },
    "action": {
        "default_icon": "icon-48.png"
    }
}