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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย 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 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"
            ]
        }
    ]
}