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