Bing AI Plus
Adds many features and gives options to the new Bing AI chatbot (ChatGPT v4).
Co je Bing AI Plus?
Bing AI Plus je rozšíření Chrome vyvinuté Patrik Martinko, a jeho hlavní funkcí je „Adds many features and gives options to the new Bing AI chatbot (ChatGPT v4).“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Bing AI Plus
Stáhněte si soubory rozšíření Bing AI Plus ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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
Základní Informace o Rozšíření
Název | Bing AI Plus |
ID | fidegdolhcippkeobljodnicbeecghlm |
Oficiální URL | https://chrome.google.com/webstore/detail/bing-ai-plus/fidegdolhcippkeobljodnicbeecghlm |
Popis | Adds many features and gives options to the new Bing AI chatbot (ChatGPT v4). |
Velikost souboru | 25.73 KB |
Počet instalací | 39 |
Aktuální Verze | 1.1.1 |
Poslední Aktualizace | 2023-06-30 |
Datum Vydání | 2023-06-18 |
Hodnocení | 5.00/5 Celkem 1 Hodnocení |
Vývojář | Patrik Martinko |
[email protected] | |
Typ Platby | free |
Webové stránky Rozšíření | https://github.com/patrik-martinko/app-bing-ai-plus |
URL Stránky Nápovědy | https://github.com/patrik-martinko/app-bing-ai-plus/issues |
Podporované Jazyky | 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 } } |