Bing AI Plus
Adds many features and gives options to the new Bing AI chatbot (ChatGPT v4).
什么是Bing AI Plus?
Bing AI Plus是由Patrik Martinko开发的Chrome扩展程序,该扩展的主要功能是“Adds many features and gives options to the new Bing AI chatbot (ChatGPT v4).”。
扩展截图
下载Bing AI Plus扩展crx文件
下载Bing AI Plus扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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
扩展基本信息
名称 | Bing AI Plus |
ID | fidegdolhcippkeobljodnicbeecghlm |
官方URL | https://chrome.google.com/webstore/detail/bing-ai-plus/fidegdolhcippkeobljodnicbeecghlm |
简介 | Adds many features and gives options to the new Bing AI chatbot (ChatGPT v4). |
文件大小 | 25.73 KB |
安装次数 | 39 |
当前版本 | 1.1.1 |
更新时间 | 2023-06-30 |
上架时间 | 2023-06-18 |
评分 | 5.00/5 共1次评分 |
开发者 | Patrik Martinko |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://github.com/patrik-martinko/app-bing-ai-plus |
帮助页面URL | https://github.com/patrik-martinko/app-bing-ai-plus/issues |
支持的语言 | 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 } } |