MaskMe

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

Hvad er MaskMe?

MaskMe er en Chrome-udvidelse udviklet af tbuchanvb7, og dens hovedfunktion er "This extension replaces a user's personal information with fake info on webpages".

Udvidelsesskærmbilleder

screenshot
screenshot

Download MaskMe-udvidelses-CRX-fil

Download MaskMe-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn MaskMe MaskMe
ID inkejhpammjgkebcihmipacpkkgemgac
Officiel URL https://chromewebstore.google.com/detail/maskme/inkejhpammjgkebcihmipacpkkgemgac
Beskrivelse This extension replaces a user's personal information with fake info on webpages
Filstørrelse 6.37 KB
Antal Installationer 31
Nuværende Version 1.0
Senest Opdateret 2023-09-20
Udgivelsesdato 2023-09-20
Bedømmelse 5.00/5 Samlet 1 Bedømmelser
Udvikler tbuchanvb7
E-mail [email protected]
Betalingsmetode free
Understøttede Sprog 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": []
}