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 |
电子邮箱 | [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" ] } ] } |