Bing AI for Chrome
Allows using Bing AI chatbot with Google Chrome and other Chromium browsers.
Bing AI for Chrome là gì?
Bing AI for Chrome là một tiện ích mở rộng Chrome được phát triển bởi Patrik Martinko, và tính năng chính của nó là "Allows using Bing AI chatbot with Google Chrome and other Chromium browsers.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Bing AI for Chrome
Tải xuống các tệp mở rộng Bing AI for Chrome dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Bing AI for Chrome |
ID | oofdkcckpabclngcdjnkhlldcfadlfmh |
URL Chính Thức | https://chromewebstore.google.com/detail/bing-ai-for-chrome/oofdkcckpabclngcdjnkhlldcfadlfmh |
Mô tả | Allows using Bing AI chatbot with Google Chrome and other Chromium browsers. |
Kích Thước Tệp | 24.79 KB |
Số Lần Cài Đặt | 44,693 |
Phiên Bản Hiện Tại | 1.1.0 |
Cập Nhật Lần Cuối | 2024-01-23 |
Ngày Phát Hành | 2023-04-26 |
Đánh Giá | 3.48/5 Tổng số 42 Đánh Giá |
Nhà Phát Triển | Patrik Martinko |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/patrik-martinko/app-bing-ai-for-chrome |
URL Trang Trợ Giúp | https://github.com/patrik-martinko/app-bing-ai-for-chrome/issues |
Ngôn Ngữ Được Hỗ Trợ | 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" } } |