PixelBlock

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

Co to jest PixelBlock?

PixelBlock to rozszerzenie Chrome opracowane przez omar.w.qureshi, a jego główną funkcją jest „PixelBlock is a Gmail extension that blocks people from tracking when you open their emails.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia PixelBlock

Pobierz pliki rozszerzeń PixelBlock w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa PixelBlock PixelBlock
ID jmpmfcjnflbcoidlgapblgpgbilinlem
Oficjalny URL https://chromewebstore.google.com/detail/pixelblock/jmpmfcjnflbcoidlgapblgpgbilinlem
Opis PixelBlock is a Gmail extension that blocks people from tracking when you open their emails.
Rozmiar pliku 177 KB
Liczba instalacji 100,004
Aktualna Wersja 2023.12.13
Ostatnia Aktualizacja 2023-12-12
Data Publikacji 2019-04-09
Ocena 3.66/5 Łącznie 206 Oceny
Deweloper omar.w.qureshi
E-mail [email protected]
Typ Płatności free
Adres URL Strony Pomocy https://pixelblock.neocities.org
Adres URL Strony Polityki Prywatności https://pixelblock.neocities.org
Obsługiwane Języki 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"
    ]
}