Bing AI for Chrome
Allows using Bing AI chatbot with Google Chrome and other Chromium browsers.
什么是Bing AI for Chrome?
Bing AI for Chrome是由Patrik Martinko开发的Chrome扩展程序,该扩展的主要功能是“Allows using Bing AI chatbot with Google Chrome and other Chromium browsers.”。
扩展截图
下载Bing AI for Chrome扩展crx文件
下载Bing AI for Chrome扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Microsoft forces to use Microsoft Edge for Bing with Copilot AI (Chat GPT v4) and limits the other browsers. This extension removes the limits of Bing with Colipot AI chatbot with Google Chrome and other Chromium browsers by setting appropriate HTTP headers for the bing.com domain. Please try to disable all other browser extensions because many extensions (VPNs, ad blockers, cookies, ...) break the Bing AI functionality. -- Brave Browser The latest version of Brave has a bug that breaks the functionality so please download and install the separate package manually (Chrome Webstore doesn't support extensions with manifest v2). https://github.com/patrik-martinko/app-bing-ai-for-chrome#brave-browser
扩展基本信息
名称 | Bing AI for Chrome |
ID | oofdkcckpabclngcdjnkhlldcfadlfmh |
官方URL | https://chromewebstore.google.com/detail/bing-ai-for-chrome/oofdkcckpabclngcdjnkhlldcfadlfmh |
简介 | Allows using Bing AI chatbot with Google Chrome and other Chromium browsers. |
文件大小 | 24.79 KB |
安装次数 | 44,693 |
当前版本 | 1.1.0 |
更新时间 | 2024-01-23 |
上架时间 | 2023-04-26 |
评分 | 3.48/5 共42次评分 |
开发者 | Patrik Martinko |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://github.com/patrik-martinko/app-bing-ai-for-chrome |
帮助页面URL | https://github.com/patrik-martinko/app-bing-ai-for-chrome/issues |
支持的语言 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Bing AI for Chrome", "description": "Allows using Bing AI chatbot with Google Chrome and other Chromium browsers.", "version": "1.1.0", "permissions": [ "declarativeNetRequest" ], "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "https:\/\/*.bing.com\/*" ], "js": [ "script.js" ] } ], "host_permissions": [ "https:\/\/*.bing.com\/*" ], "icons": { "16": "icon-16.png", "48": "icon-48.png", "128": "icon-128.png" }, "action": { "default_icon": "icon-48.png" } } |