Bing AI Plus
Adds many features and gives options to the new Bing AI chatbot (ChatGPT v4).
Qu'est-ce que Bing AI Plus ?
Bing AI Plus est une extension Chrome développée par Patrik Martinko, et sa fonction principale est "Adds many features and gives options to the new Bing AI chatbot (ChatGPT v4).".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Bing AI Plus
Téléchargez les fichiers d'extension Bing AI Plus au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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
Informations de Base sur l'Extension
Nom | Bing AI Plus |
ID | fidegdolhcippkeobljodnicbeecghlm |
URL Officiel | https://chrome.google.com/webstore/detail/bing-ai-plus/fidegdolhcippkeobljodnicbeecghlm |
Description | Adds many features and gives options to the new Bing AI chatbot (ChatGPT v4). |
Taille du Fichier | 25.73 KB |
Nombre d'Installations | 39 |
Version Actuelle | 1.1.1 |
Dernière Mise à Jour | 2023-06-30 |
Date de Publication | 2023-06-18 |
Évaluation | 5.00/5 Total 1 Évaluations |
Développeur | Patrik Martinko |
[email protected] | |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/patrik-martinko/app-bing-ai-plus |
URL de la Page d'Aide | https://github.com/patrik-martinko/app-bing-ai-plus/issues |
Langues Prises en Charge | 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 } } |