Lakera - ChatGPT Data Leak Protection

Lakera Chrome Extension provides a privacy guard that protects you against sharing sensitive information with ChatGPT.

Τι είναι το Lakera - ChatGPT Data Leak Protection;

Το Lakera - ChatGPT Data Leak Protection είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://www.lakera.ai, και η κύρια λειτουργία του είναι "Lakera Chrome Extension provides a privacy guard that protects you against sharing sensitive information with ChatGPT.".

Στιγμιότυπα Επέκτασης

screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Lakera - ChatGPT Data Leak Protection

Λήψη αρχείων επέκτασης Lakera - ChatGPT Data Leak Protection σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        Whether it is a document that needs to be summarized and contains personal information or accidentally pasting private data from your clipboard to ChatGPT, the extension protects you from disclosing important data.

The entire data processing is running in the user’s browser (locally on the computer), thus no data leaves the machine. The code is open source for maximum transparency.

The extension offers support for the following categories of private data:
• Credit card numbers
• Anglophone names
• Email addresses
• Phone numbers
• US street addresses
• US social security numbers
• Secret keys

You can decide which ones you want to be protected against leaking by turning their respective detectors on or off after clicking on the extension icon.

The support for the mentioned categories is currently limited to English language.

The extension analyzes your input before you submit it to ChatGPT and warns you about the detected private data. Afterward you can decide if you still want to proceed or if you want to change your input accordingly.

The extension does not collect any kind of data.

Lakera is a fast-growing startup based in Zürich, Switzerland that is committed to solving AI safety, to foster innovation and benefit humanity.

The source code for the extension is published at : https://github.com/lakeraai/chrome-extension
Learn more about Lakera and our products at: https://www.lakera.ai                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Lakera - ChatGPT Data Leak Protection Lakera - ChatGPT Data Leak Protection
ID npdeilagbbimhnbbdjmagmedchnpjeid
Επίσημο URL https://chromewebstore.google.com/detail/lakera-chatgpt-data-leak/npdeilagbbimhnbbdjmagmedchnpjeid
Περιγραφή Lakera Chrome Extension provides a privacy guard that protects you against sharing sensitive information with ChatGPT.
Μέγεθος Αρχείου 820 KB
Αριθμός Εγκαταστάσεων 308
Τρέχουσα Έκδοση 0.1.4
Τελευταία Ενημέρωση 2023-10-18
Ημερομηνία Δημοσίευσης 2023-09-07
Αξιολόγηση 5.00/5 Συνολικά 14 Αξιολογήσεις
Προγραμματιστής https://www.lakera.ai
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://www.lakera.ai
Διεύθυνση URL της Σελίδας Βοήθειας https://github.com/lakeraai/chrome-extension
URL της Σελίδας Πολιτικής Απορρήτου https://www.lakera.ai/privacypolicy
Υποστηριζόμενες Γλώσσες en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Lakera - ChatGPT Data Leak Protection",
    "description": "Lakera Chrome Extension provides a privacy guard that protects you against sharing sensitive information with ChatGPT.",
    "version": "0.1.4",
    "action": {
        "default_icon": "icon-19.png",
        "default_popup": "src\/popup\/popup.html"
    },
    "icons": {
        "16": "icon-16.png",
        "19": "icon-19.png",
        "38": "icon-38.png",
        "48": "icon-48.png",
        "128": "icon-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/chat.openai.com\/*"
            ],
            "js": [
                "src\/content.js"
            ]
        }
    ],
    "background": {
        "service_worker": "src\/background.js"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "icon-128.png"
            ],
            "matches": [
                "https:\/\/chat.openai.com\/*"
            ]
        }
    ],
    "permissions": [
        "storage",
        "activeTab"
    ]
}