ChatGPT Secure
Prevents sensitive information disclosure and protects from content hijacking attack on https://chat.openai.com/
ChatGPT Secureとは何ですか?
ChatGPT SecureはYevhenii Molchanovによって開発されたChromeの拡張機能で、その主な機能は「Prevents sensitive information disclosure and protects from content hijacking attack on https://chat.openai.com/」です。
拡張機能のスクリーンショット
ChatGPT Secure拡張機能のCRXファイルをダウンロード
ChatGPT Secure拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
ChatGPT Secure is designed to protect users from the potential copy-pasting of sensitive information to ChatGPT. Also, it prevents potential content hijacking attacks via prompt injection. If you have any feedback or suggestions feel free to contact me via [email protected]
拡張機能の基本情報
名前 | ChatGPT Secure |
ID | hodneljnifpbcnhmlommhmmpoknlioil |
公式URL | https://chromewebstore.google.com/detail/chatgpt-secure/hodneljnifpbcnhmlommhmmpoknlioil |
説明 | Prevents sensitive information disclosure and protects from content hijacking attack on https://chat.openai.com/ |
ファイルサイズ | 17.64 KB |
インストール数 | 88 |
現在のバージョン | 1.0 |
最終更新日 | 2023-05-05 |
公開日 | 2023-03-28 |
評価 | 5.00/5 合計 7 レビュー |
開発者 | Yevhenii Molchanov |
Eメール | [email protected] |
支払い方法 | free |
対応言語 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "ChatGPT Secure", "version": "1.0", "description": "Prevents sensitive information disclosure and protects from content hijacking attack on https:\/\/chat.openai.com\/", "permissions": [ "storage" ], "action": { "default_popup": "popup.html", "default_icon": { "16": "icon16x16.png", "48": "icon32x32.png", "128": "icon150x150.png" } }, "icons": { "16": "icon16x16.png", "48": "icon32x32.png", "128": "icon150x150.png" }, "content_scripts": [ { "matches": [ "https:\/\/chat.openai.com\/*" ], "js": [ "content.js" ], "css": [ "style.css" ] } ] } |