Prompt Firewall: ChatGPT Data Leak Prevention

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

Prompt Firewall: ChatGPT Data Leak Prevention là gì?

Prompt Firewall: ChatGPT Data Leak Prevention là một tiện ích mở rộng Chrome được phát triển bởi Evren Yalçın, và tính năng chính của nó là "ChatGPT Data Leak Prevention (DLP) : Safeguard Sensitive Information and Protect Your Privacy".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Prompt Firewall: ChatGPT Data Leak Prevention

Tải xuống các tệp mở rộng Prompt Firewall: ChatGPT Data Leak Prevention dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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!                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Prompt Firewall: ChatGPT Data Leak Prevention Prompt Firewall: ChatGPT Data Leak Prevention
ID kmhmhfalodpigohkmmafmaaonoemoejl
URL Chính Thức https://chromewebstore.google.com/detail/prompt-firewall-chatgpt-d/kmhmhfalodpigohkmmafmaaonoemoejl
Mô tả ChatGPT Data Leak Prevention (DLP) : Safeguard Sensitive Information and Protect Your Privacy
Kích Thước Tệp 49.79 KB
Số Lần Cài Đặt 58
Phiên Bản Hiện Tại 0.0.9
Cập Nhật Lần Cuối 2023-12-26
Ngày Phát Hành 2023-09-02
Đánh Giá 5.00/5 Tổng số 5 Đánh Giá
Nhà Phát Triển Evren Yalçın
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://www.promptfirewall.com
URL Trang Chính Sách Bảo Mật https://www.promptfirewall.com/privacy-policy.html
Ngôn Ngữ Được Hỗ Trợ 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"
            ]
        }
    ]
}