Bing AI Plus
Adds many features and gives options to the new Bing AI chatbot (ChatGPT v4).
Hvad er Bing AI Plus?
Bing AI Plus er en Chrome-udvidelse udviklet af Patrik Martinko, og dens hovedfunktion er "Adds many features and gives options to the new Bing AI chatbot (ChatGPT v4).".
Udvidelsesskærmbilleder
Download Bing AI Plus-udvidelses-CRX-fil
Download Bing AI Plus-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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
Grundlæggende oplysninger om udvidelsen
Navn | Bing AI Plus |
ID | fidegdolhcippkeobljodnicbeecghlm |
Officiel URL | https://chrome.google.com/webstore/detail/bing-ai-plus/fidegdolhcippkeobljodnicbeecghlm |
Beskrivelse | Adds many features and gives options to the new Bing AI chatbot (ChatGPT v4). |
Filstørrelse | 25.73 KB |
Antal Installationer | 39 |
Nuværende Version | 1.1.1 |
Senest Opdateret | 2023-06-30 |
Udgivelsesdato | 2023-06-18 |
Bedømmelse | 5.00/5 Samlet 1 Bedømmelser |
Udvikler | Patrik Martinko |
[email protected] | |
Betalingsmetode | free |
Udvidelseswebsted | https://github.com/patrik-martinko/app-bing-ai-plus |
Hjælpeside-URL | https://github.com/patrik-martinko/app-bing-ai-plus/issues |
Understøttede Sprog | 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 } } |