ChatGPT Secure

Prevents sensitive information disclosure and protects from content hijacking attack on https://chat.openai.com/

ChatGPT Secure là gì?

ChatGPT Secure là một tiện ích mở rộng Chrome được phát triển bởi Yevhenii Molchanov, và tính năng chính của nó là "Prevents sensitive information disclosure and protects from content hijacking attack on https://chat.openai.com/".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng ChatGPT Secure

Tải xuống các tệp mở rộng ChatGPT Secure dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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]                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên ChatGPT Secure ChatGPT Secure
ID hodneljnifpbcnhmlommhmmpoknlioil
URL Chính Thức https://chromewebstore.google.com/detail/chatgpt-secure/hodneljnifpbcnhmlommhmmpoknlioil
Mô tả Prevents sensitive information disclosure and protects from content hijacking attack on https://chat.openai.com/
Kích Thước Tệp 17.64 KB
Số Lần Cài Đặt 88
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2023-05-05
Ngày Phát Hành 2023-03-28
Đánh Giá 5.00/5 Tổng số 7 Đánh Giá
Nhà Phát Triển Yevhenii Molchanov
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
            ]
        }
    ]
}