ChatGPT Secure

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

ما هو ChatGPT Secure؟

ChatGPT Secure هو إضافة Chrome تم تطويرها بواسطة Yevhenii Molchanov، والميزة الرئيسية لها هي "Prevents sensitive information disclosure and protects from content hijacking attack on https://chat.openai.com/".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة ChatGPT Secure

قم بتنزيل ملفات الامتداد ChatGPT Secure بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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 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"
            ]
        }
    ]
}