Bing AI Plus
Adds many features and gives options to the new Bing AI chatbot (ChatGPT v4).
Bing AI Plus là gì?
Bing AI Plus 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à "Adds many features and gives options to the new Bing AI chatbot (ChatGPT v4).".
Ả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 Plus
Tải xuống các tệp mở rộng Bing AI Plus 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
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
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Bing AI Plus |
ID | fidegdolhcippkeobljodnicbeecghlm |
URL Chính Thức | https://chrome.google.com/webstore/detail/bing-ai-plus/fidegdolhcippkeobljodnicbeecghlm |
Mô tả | Adds many features and gives options to the new Bing AI chatbot (ChatGPT v4). |
Kích Thước Tệp | 25.73 KB |
Số Lần Cài Đặt | 39 |
Phiên Bản Hiện Tại | 1.1.1 |
Cập Nhật Lần Cuối | 2023-06-30 |
Ngày Phát Hành | 2023-06-18 |
Đánh Giá | 5.00/5 Tổng số 1 Đá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-plus |
URL Trang Trợ Giúp | https://github.com/patrik-martinko/app-bing-ai-plus/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 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 } } |