MaskMe

This extension replaces a user's personal information with fake info on webpages

MaskMe là gì?

MaskMe là một tiện ích mở rộng Chrome được phát triển bởi tbuchanvb7, và tính năng chính của nó là "This extension replaces a user's personal information with fake info on webpages".

Ả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 MaskMe

Tải xuống các tệp mở rộng MaskMe 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

                        MaskMe is a powerful Chrome extension designed to enhance privacy and security for live streamers and video content creators. It allows users to create a list of sensitive information, such as real names or locations, that they wish to keep private during their live streams or video recordings. MaskMe then automatically replaces these sensitive words with user-defined substitutes across the web pages being displayed, minimizing the risk of accidental exposure of private information. With its real-time text replacement and intuitive interface, MaskMe is a must-have tool for anyone seeking to maintain their privacy while engaging with their audience online.                    

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

Tên MaskMe MaskMe
ID inkejhpammjgkebcihmipacpkkgemgac
URL Chính Thức https://chromewebstore.google.com/detail/maskme/inkejhpammjgkebcihmipacpkkgemgac
Mô tả This extension replaces a user's personal information with fake info on webpages
Kích Thước Tệp 6.37 KB
Số Lần Cài Đặt 31
Phiên Bản Hiện Tại 1.0
Cập Nhật Lần Cuối 2023-09-20
Ngày Phát Hành 2023-09-20
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển tbuchanvb7
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "MaskMe",
    "description": "This extension replaces a user's personal information with fake info on webpages",
    "version": "1.0",
    "permissions": [
        "tabs",
        "storage",
        "webNavigation"
    ],
    "background": {
        "service_worker": "service_worker.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_start"
        }
    ],
    "action": {
        "default_popup": "popup.html"
    },
    "content_security_policy": []
}