Bing AI Plus
Adds many features and gives options to the new Bing AI chatbot (ChatGPT v4).
O que é Bing AI Plus?
Bing AI Plus é uma extensão do Chrome desenvolvida por Patrik Martinko, e sua principal característica é "Adds many features and gives options to the new Bing AI chatbot (ChatGPT v4).".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Bing AI Plus
Baixe arquivos de extensão Bing AI Plus no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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
Informações Básicas da Extensão
Nome | Bing AI Plus |
ID | fidegdolhcippkeobljodnicbeecghlm |
URL Oficial | https://chrome.google.com/webstore/detail/bing-ai-plus/fidegdolhcippkeobljodnicbeecghlm |
Descrição | Adds many features and gives options to the new Bing AI chatbot (ChatGPT v4). |
Tamanho do Arquivo | 25.73 KB |
Contagem de Instalações | 39 |
Versão Atual | 1.1.1 |
Última Atualização | 2023-06-30 |
Data de Publicação | 2023-06-18 |
Classificação | 5.00/5 Total de 1 Avaliações |
Desenvolvedor | Patrik Martinko |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/patrik-martinko/app-bing-ai-plus |
URL da Página de Ajuda | https://github.com/patrik-martinko/app-bing-ai-plus/issues |
Idiomas Suportados | 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 } } |