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 |
Eメール | [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" } } |