PixelBlock

PixelBlock is a Gmail extension that blocks people from tracking when you open their emails.

PixelBlock란 무엇입니까?

PixelBlock은(는) omar.w.qureshi에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "PixelBlock is a Gmail extension that blocks people from tracking when you open their emails."입니다.

확장 프로그램 스크린샷

screenshot

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

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

확장 프로그램 사용 설명서

                        PixelBlock is an Gmail extension that blocks email tracking attempts used to detect when you open and read emails. PixelBlock displays a 'red eye' when it finds and blocks a tracking attempt inside of an email.                    

확장 프로그램 기본 정보

이름 PixelBlock PixelBlock
ID jmpmfcjnflbcoidlgapblgpgbilinlem
공식 URL https://chromewebstore.google.com/detail/pixelblock/jmpmfcjnflbcoidlgapblgpgbilinlem
설명 PixelBlock is a Gmail extension that blocks people from tracking when you open their emails.
파일 크기 177 KB
설치 횟수 100,004
현재 버전 2023.12.13
최근 업데이트 2023-12-12
출시 날짜 2019-04-09
평점 3.66/5 총 206 개의 평점
개발자 omar.w.qureshi
이메일 [email protected]
결제 유형 free
도움말 페이지 URL https://pixelblock.neocities.org
개인정보 보호 정책 페이지 URL https://pixelblock.neocities.org
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "PixelBlock",
    "version": "2023.12.13",
    "permissions": [
        "*:\/\/*.googleusercontent.com\/proxy\/*",
        "*:\/\/*.googleusercontent.com\/meips\/*",
        "*:\/\/mail.google.com\/*",
        "webRequest",
        "webRequestBlocking"
    ],
    "description": "PixelBlock is a Gmail extension that blocks people from tracking when you open their emails.",
    "background": {
        "scripts": [
            "bg.js"
        ],
        "persistent": true
    },
    "icons": {
        "48": "images\/logo48.png",
        "128": "images\/logo128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/mail.google.com\/*"
            ],
            "js": [
                "scripts\/jquery.js",
                "cs.js"
            ],
            "run_at": "document_end"
        }
    ],
    "web_accessible_resources": [
        "scripts\/*.js",
        "images\/*.png",
        "styles\/*.css"
    ]
}