MaskMe

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

Что такое MaskMe?

MaskMe - это расширение Chrome, разработанное tbuchanvb7, и его основная функция - "This extension replaces a user's personal information with fake info on webpages".

Снимки экрана расширения

screenshot
screenshot

Скачать файл CRX расширения MaskMe

Скачайте файлы расширений MaskMe в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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.                    

Основная информация о расширении

Название MaskMe MaskMe
ID inkejhpammjgkebcihmipacpkkgemgac
Официальный URL https://chromewebstore.google.com/detail/maskme/inkejhpammjgkebcihmipacpkkgemgac
Описание This extension replaces a user's personal information with fake info on webpages
Размер файла 6.37 KB
Количество установок 31
Текущая Версия 1.0
Последнее Обновление 2023-09-20
Дата публикации 2023-09-20
Рейтинг 5.00/5 Всего 1 оценок
Разработчик tbuchanvb7
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки 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": []
}