Prompt Firewall: ChatGPT Data Leak Prevention

ChatGPT Data Leak Prevention (DLP) : Safeguard Sensitive Information and Protect Your Privacy

Prompt Firewall: ChatGPT Data Leak Prevention란 무엇입니까?

Prompt Firewall: ChatGPT Data Leak Prevention은(는) Evren Yalçın에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "ChatGPT Data Leak Prevention (DLP) : Safeguard Sensitive Information and Protect Your Privacy"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Prompt Firewall: ChatGPT Data Leak Prevention 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Prompt Firewall Chrome Extension

Enhance your digital security with the Prompt Firewall, a cutting-edge Chrome add-on designed to protect your sensitive personal information. Tailored for both individual and business use, this extension is especially effective when interacting with Large Language Models like ChatGPT.

Features:

PII Detection: Our advanced algorithms vigilantly detect Personal Identifiable Information (PII) such as IBAN Codes, Phone Numbers, Crypto Addresses, Credit Card Numbers, Email Addresses, and Secret Keys. An alert system immediately informs you of any detected PII, adding a robust layer of privacy protection.

Plugin Guard: Secure against various injection attacks, including direct and indirect prompt injections, with our Plugin Guard feature. (Enable the webpilot plugin for this feature.)

Synthetic Data Protection: We prioritize your privacy by using synthetic data, a technique where artificial data is generated based on real data. This ensures the confidentiality and security of your real data when using Large Language Models.

Local Operation: Your privacy is our priority. The Prompt Firewall operates entirely locally, ensuring that your private data remains just that – private. No external transmission of your data occurs.

Discover more about the Prompt Firewall Chrome Extension and how it can protect your online interactions. Access our source code https://github.com/evrenyal/promptfirewall-chrome-extension and read our https://promptfirewall.com/privacy-policy.html here for detailed insights.

Secure your digital presence today with Prompt Firewall!                    

확장 프로그램 기본 정보

이름 Prompt Firewall: ChatGPT Data Leak Prevention Prompt Firewall: ChatGPT Data Leak Prevention
ID kmhmhfalodpigohkmmafmaaonoemoejl
공식 URL https://chromewebstore.google.com/detail/prompt-firewall-chatgpt-d/kmhmhfalodpigohkmmafmaaonoemoejl
설명 ChatGPT Data Leak Prevention (DLP) : Safeguard Sensitive Information and Protect Your Privacy
파일 크기 49.79 KB
설치 횟수 58
현재 버전 0.0.9
최근 업데이트 2023-12-26
출시 날짜 2023-09-02
평점 5.00/5 총 5 개의 평점
개발자 Evren Yalçın
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://www.promptfirewall.com
개인정보 보호 정책 페이지 URL https://www.promptfirewall.com/privacy-policy.html
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Prompt Firewall: ChatGPT Data Leak Prevention",
    "description": "ChatGPT Data Leak Prevention (DLP) : Safeguard Sensitive Information and Protect Your Privacy",
    "version": "0.0.9",
    "permissions": [
        "storage",
        "activeTab"
    ],
    "host_permissions": [
        "https:\/\/chat.openai.com\/*"
    ],
    "manifest_version": 3,
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "icon16.png"
        }
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/chat.openai.com\/*"
            ],
            "js": [
                "content_script.js"
            ],
            "css": [
                "style.css"
            ],
            "run_at": "document_end"
        }
    ],
    "web_accessible_resources": [
        {
            "matches": [
                ""
            ],
            "resources": [
                "style.css"
            ]
        }
    ]
}