Bing AI Plus

Adds many features and gives options to the new Bing AI chatbot (ChatGPT v4).

Cos'è Bing AI Plus?

Bing AI Plus è un'estensione di Chrome sviluppata da Patrik Martinko, e la sua funzione principale è "Adds many features and gives options to the new Bing AI chatbot (ChatGPT v4).".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Bing AI Plus

Scarica i file di estensione Bing AI Plus 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

                        Features:

- Ability to automatically fill in and send the query from the URL parameter named 'q'
- Ability to hide (and show) the recent activity sidebar
- Ability to center the chat
- Ability to hide the rewards icon
- Ability to hide the welcome banner
- Ability to hide the examples
- Ability to hide the feedback text and links
- Ability to hide the terms & privacy links
- Ability to hide the color gradient on background                    

Informazioni di Base sull'Estensione

Nome Bing AI Plus Bing AI Plus
ID fidegdolhcippkeobljodnicbeecghlm
URL Ufficiale https://chrome.google.com/webstore/detail/bing-ai-plus/fidegdolhcippkeobljodnicbeecghlm
Descrizione Adds many features and gives options to the new Bing AI chatbot (ChatGPT v4).
Dimensione del File 25.73 KB
Conteggio Installazioni 39
Versione Corrente 1.1.1
Ultimo Aggiornamento 2023-06-30
Data di Pubblicazione 2023-06-18
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore Patrik Martinko
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/patrik-martinko/app-bing-ai-plus
URL della Pagina di Aiuto https://github.com/patrik-martinko/app-bing-ai-plus/issues
Lingue Supportate en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Bing AI Plus",
    "description": "Adds many features and gives options to the new Bing AI chatbot (ChatGPT v4).",
    "version": "1.1.1",
    "permissions": [
        "storage"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.bing.com\/*"
            ],
            "js": [
                "script.js"
            ]
        }
    ],
    "icons": {
        "16": "icon-16.png",
        "48": "icon-48.png",
        "128": "icon-128.png"
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true
    }
}