ChatGPT Secure

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

Cos'è ChatGPT Secure?

ChatGPT Secure è un'estensione di Chrome sviluppata da Yevhenii Molchanov, e la sua funzione principale è "Prevents sensitive information disclosure and protects from content hijacking attack on https://chat.openai.com/".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione ChatGPT Secure

Scarica i file di estensione ChatGPT Secure in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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]                    

Informazioni di Base sull'Estensione

Nome ChatGPT Secure ChatGPT Secure
ID hodneljnifpbcnhmlommhmmpoknlioil
URL Ufficiale https://chromewebstore.google.com/detail/chatgpt-secure/hodneljnifpbcnhmlommhmmpoknlioil
Descrizione Prevents sensitive information disclosure and protects from content hijacking attack on https://chat.openai.com/
Dimensione del File 17.64 KB
Conteggio Installazioni 88
Versione Corrente 1.0
Ultimo Aggiornamento 2023-05-05
Data di Pubblicazione 2023-03-28
Valutazione 5.00/5 Totale 7 Valutazioni
Sviluppatore Yevhenii Molchanov
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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"
            ]
        }
    ]
}