Bing AI Plus
Adds many features and gives options to the new Bing AI chatbot (ChatGPT v4).
Co to jest Bing AI Plus?
Bing AI Plus to rozszerzenie Chrome opracowane przez Patrik Martinko, a jego główną funkcją jest „Adds many features and gives options to the new Bing AI chatbot (ChatGPT v4).”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Bing AI Plus
Pobierz pliki rozszerzeń Bing AI Plus 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
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
Podstawowe informacje o rozszerzeniu
Nazwa | Bing AI Plus |
ID | fidegdolhcippkeobljodnicbeecghlm |
Oficjalny URL | https://chrome.google.com/webstore/detail/bing-ai-plus/fidegdolhcippkeobljodnicbeecghlm |
Opis | Adds many features and gives options to the new Bing AI chatbot (ChatGPT v4). |
Rozmiar pliku | 25.73 KB |
Liczba instalacji | 39 |
Aktualna Wersja | 1.1.1 |
Ostatnia Aktualizacja | 2023-06-30 |
Data Publikacji | 2023-06-18 |
Ocena | 5.00/5 Łącznie 1 Oceny |
Deweloper | Patrik Martinko |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://github.com/patrik-martinko/app-bing-ai-plus |
Adres URL Strony Pomocy | https://github.com/patrik-martinko/app-bing-ai-plus/issues |
Obsługiwane Języki | 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 } } |