MaskMe

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

MaskMe란 무엇입니까?

MaskMe은(는) tbuchanvb7에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension replaces a user's personal information with fake info on webpages"입니다.

확장 프로그램 스크린샷

screenshot
screenshot

MaskMe 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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": []
}