ChatGPT Secure

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

Vad är ChatGPT Secure?

ChatGPT Secure är en Chrome-tillägg utvecklad av Yevhenii Molchanov, och dess huvudfunktion är "Prevents sensitive information disclosure and protects from content hijacking attack on https://chat.openai.com/".

Tilläggsskärmbilder

screenshot

Ladda ner ChatGPT Secure-förlängningens CRX-fil

Ladda ner ChatGPT Secure-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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]                    

Grundläggande Information om Tillägg

Namn ChatGPT Secure ChatGPT Secure
ID hodneljnifpbcnhmlommhmmpoknlioil
Officiell webbadress https://chromewebstore.google.com/detail/chatgpt-secure/hodneljnifpbcnhmlommhmmpoknlioil
Beskrivning Prevents sensitive information disclosure and protects from content hijacking attack on https://chat.openai.com/
Filstorlek 17.64 KB
Antal Installationer 88
Aktuell Version 1.0
Senast Uppdaterad 2023-05-05
Publiceringsdatum 2023-03-28
Betyg 5.00/5 Totalt 7 Betyg
Utvecklare Yevhenii Molchanov
E-post [email protected]
Betalningssätt free
Stödda Språk 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"
            ]
        }
    ]
}