Bing AI Plus
Adds many features and gives options to the new Bing AI chatbot (ChatGPT v4).
¿Qué es Bing AI Plus?
Bing AI Plus es una extensión de Chrome desarrollada por Patrik Martinko, y su función principal es "Adds many features and gives options to the new Bing AI chatbot (ChatGPT v4).".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Bing AI Plus
Descarga archivos de extensión Bing AI Plus 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
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
Información Básica de la Extensión
Nombre | Bing AI Plus |
ID | fidegdolhcippkeobljodnicbeecghlm |
URL Oficial | https://chrome.google.com/webstore/detail/bing-ai-plus/fidegdolhcippkeobljodnicbeecghlm |
Descripción | Adds many features and gives options to the new Bing AI chatbot (ChatGPT v4). |
Tamaño del Archivo | 25.73 KB |
Cantidad de Instalaciones | 39 |
Versión Actual | 1.1.1 |
Última Actualización | 2023-06-30 |
Fecha de Publicación | 2023-06-18 |
Calificación | 5.00/5 Total de 1 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-plus |
URL de la Página de Ayuda | https://github.com/patrik-martinko/app-bing-ai-plus/issues |
Idiomas Soportados | 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 } } |