MaskMe

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

O que é MaskMe?

MaskMe é uma extensão do Chrome desenvolvida por tbuchanvb7, e sua principal característica é "This extension replaces a user's personal information with fake info on webpages".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão MaskMe

Baixe arquivos de extensão MaskMe no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome MaskMe MaskMe
ID inkejhpammjgkebcihmipacpkkgemgac
URL Oficial https://chromewebstore.google.com/detail/maskme/inkejhpammjgkebcihmipacpkkgemgac
Descrição This extension replaces a user's personal information with fake info on webpages
Tamanho do Arquivo 6.37 KB
Contagem de Instalações 31
Versão Atual 1.0
Última Atualização 2023-09-20
Data de Publicação 2023-09-20
Classificação 5.00/5 Total de 1 Avaliações
Desenvolvedor tbuchanvb7
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados 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": []
}