Bing AI Plus
Adds many features and gives options to the new Bing AI chatbot (ChatGPT v4).
What is Bing AI Plus?
Bing AI Plus is a Chrome extension developed by Patrik Martinko, and its main feature is "Adds many features and gives options to the new Bing AI chatbot (ChatGPT v4).".
Extension Screenshots
Download Bing AI Plus Extension CRX File
Download Bing AI Plus extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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
Extension Basic Information
Name | Bing AI Plus |
ID | fidegdolhcippkeobljodnicbeecghlm |
Official URL | https://chrome.google.com/webstore/detail/bing-ai-plus/fidegdolhcippkeobljodnicbeecghlm |
Description | Adds many features and gives options to the new Bing AI chatbot (ChatGPT v4). |
File Size | 25.73 KB |
Installation Count | 39 |
Current Version | 1.1.1 |
Last Updated | 2023-06-30 |
Publish Date | 2023-06-18 |
Rating | 5.00/5 Total 1 Ratings |
Developer | Patrik Martinko |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/patrik-martinko/app-bing-ai-plus |
Help Page URL | https://github.com/patrik-martinko/app-bing-ai-plus/issues |
Supported Languages | 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 } } |