Bing AI for Chrome
Allows using Bing AI chatbot with Google Chrome and other Chromium browsers.
O que é Bing AI for Chrome?
Bing AI for Chrome é uma extensão do Chrome desenvolvida por Patrik Martinko, e sua principal característica é "Allows using Bing AI chatbot with Google Chrome and other Chromium browsers.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Bing AI for Chrome
Baixe arquivos de extensão Bing AI for Chrome 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
Microsoft forces to use Microsoft Edge for Bing with Copilot AI (Chat GPT v4) and limits the other browsers. This extension removes the limits of Bing with Colipot AI chatbot with Google Chrome and other Chromium browsers by setting appropriate HTTP headers for the bing.com domain. Please try to disable all other browser extensions because many extensions (VPNs, ad blockers, cookies, ...) break the Bing AI functionality. -- Brave Browser The latest version of Brave has a bug that breaks the functionality so please download and install the separate package manually (Chrome Webstore doesn't support extensions with manifest v2). https://github.com/patrik-martinko/app-bing-ai-for-chrome#brave-browser
Informações Básicas da Extensão
Nome | Bing AI for Chrome |
ID | oofdkcckpabclngcdjnkhlldcfadlfmh |
URL Oficial | https://chromewebstore.google.com/detail/bing-ai-for-chrome/oofdkcckpabclngcdjnkhlldcfadlfmh |
Descrição | Allows using Bing AI chatbot with Google Chrome and other Chromium browsers. |
Tamanho do Arquivo | 24.79 KB |
Contagem de Instalações | 44,693 |
Versão Atual | 1.1.0 |
Última Atualização | 2024-01-23 |
Data de Publicação | 2023-04-26 |
Classificação | 3.48/5 Total de 42 Avaliações |
Desenvolvedor | Patrik Martinko |
[email protected] | |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/patrik-martinko/app-bing-ai-for-chrome |
URL da Página de Ajuda | https://github.com/patrik-martinko/app-bing-ai-for-chrome/issues |
Idiomas Suportados | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Bing AI for Chrome", "description": "Allows using Bing AI chatbot with Google Chrome and other Chromium browsers.", "version": "1.1.0", "permissions": [ "declarativeNetRequest" ], "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "https:\/\/*.bing.com\/*" ], "js": [ "script.js" ] } ], "host_permissions": [ "https:\/\/*.bing.com\/*" ], "icons": { "16": "icon-16.png", "48": "icon-48.png", "128": "icon-128.png" }, "action": { "default_icon": "icon-48.png" } } |