Bing AI Plus

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

Was ist Bing AI Plus?

Bing AI Plus ist eine Chrome-Erweiterung, die von Patrik Martinko entwickelt wurde, und ihr Hauptmerkmal ist "Adds many features and gives options to the new Bing AI chatbot (ChatGPT v4).".

Erweiterungsscreenshots

screenshot

Bing AI Plus-Erweiterungs-CRX-Datei herunterladen

Laden Sie Bing AI Plus-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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                    

Grundlegende Informationen zur Erweiterung

Name Bing AI Plus Bing AI Plus
ID fidegdolhcippkeobljodnicbeecghlm
Offizielle URL https://chrome.google.com/webstore/detail/bing-ai-plus/fidegdolhcippkeobljodnicbeecghlm
Beschreibung Adds many features and gives options to the new Bing AI chatbot (ChatGPT v4).
Dateigröße 25.73 KB
Installationsanzahl 39
Aktuelle Version 1.1.1
Letztes Update 2023-06-30
Veröffentlichungsdatum 2023-06-18
Bewertung 5.00/5 Insgesamt 1 Bewertungen
Entwickler Patrik Martinko
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://github.com/patrik-martinko/app-bing-ai-plus
Hilfeseite URL https://github.com/patrik-martinko/app-bing-ai-plus/issues
Unterstützte Sprachen 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
    }
}