Bing AI for Chrome

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

Cos'è Bing AI for Chrome?

Bing AI for Chrome è un'estensione di Chrome sviluppata da Patrik Martinko, e la sua funzione principale è "Allows using Bing AI chatbot with Google Chrome and other Chromium browsers.".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Bing AI for Chrome

Scarica i file di estensione Bing AI for Chrome in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome Bing AI for Chrome Bing AI for Chrome
ID oofdkcckpabclngcdjnkhlldcfadlfmh
URL Ufficiale https://chromewebstore.google.com/detail/bing-ai-for-chrome/oofdkcckpabclngcdjnkhlldcfadlfmh
Descrizione Allows using Bing AI chatbot with Google Chrome and other Chromium browsers.
Dimensione del File 24.79 KB
Conteggio Installazioni 44,693
Versione Corrente 1.1.0
Ultimo Aggiornamento 2024-01-23
Data di Pubblicazione 2023-04-26
Valutazione 3.48/5 Totale 42 Valutazioni
Sviluppatore Patrik Martinko
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/patrik-martinko/app-bing-ai-for-chrome
URL della Pagina di Aiuto https://github.com/patrik-martinko/app-bing-ai-for-chrome/issues
Lingue Supportate 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"
    }
}