Bing AI for Chrome
Allows using Bing AI chatbot with Google Chrome and other Chromium browsers.
Co to jest Bing AI for Chrome?
Bing AI for Chrome to rozszerzenie Chrome opracowane przez Patrik Martinko, a jego główną funkcją jest „Allows using Bing AI chatbot with Google Chrome and other Chromium browsers.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Bing AI for Chrome
Pobierz pliki rozszerzeń Bing AI for Chrome w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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
Podstawowe informacje o rozszerzeniu
Nazwa | Bing AI for Chrome |
ID | oofdkcckpabclngcdjnkhlldcfadlfmh |
Oficjalny URL | https://chromewebstore.google.com/detail/bing-ai-for-chrome/oofdkcckpabclngcdjnkhlldcfadlfmh |
Opis | Allows using Bing AI chatbot with Google Chrome and other Chromium browsers. |
Rozmiar pliku | 24.79 KB |
Liczba instalacji | 44,693 |
Aktualna Wersja | 1.1.0 |
Ostatnia Aktualizacja | 2024-01-23 |
Data Publikacji | 2023-04-26 |
Ocena | 3.48/5 Łącznie 42 Oceny |
Deweloper | Patrik Martinko |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://github.com/patrik-martinko/app-bing-ai-for-chrome |
Adres URL Strony Pomocy | https://github.com/patrik-martinko/app-bing-ai-for-chrome/issues |
Obsługiwane Języki | 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" } } |