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 https://www.lakera.ai द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Lakera Chrome Extension provides a privacy guard that protects you against sharing sensitive information with ChatGPT."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Lakera - ChatGPT Data Leak Protection एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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 |
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" ] } |