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에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Lakera Chrome Extension provides a privacy guard that protects you against sharing sensitive information with ChatGPT."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Lakera - ChatGPT Data Leak Protection 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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 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"
    ]
}