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 |
官方網址 | 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 |
電子郵箱 | [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" ] } ] } |