PixelBlock 2

PixelBlock 2 is a Gmail extension that blocks people from tracking when you open/read their emails. A fork of the original.

Co to jest PixelBlock 2?

PixelBlock 2 to rozszerzenie Chrome opracowane przez Tab Manager Plus, a jego główną funkcją jest „PixelBlock 2 is a Gmail extension that blocks people from tracking when you open/read their emails. A fork of the original.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia PixelBlock 2

Pobierz pliki rozszerzeń PixelBlock 2 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 2 is a Gmail extension that blocks people from tracking when you open or read their emails.

Note: PixelBlock 2 is a fork of the original PixelBlock extension, with small improvements to make it work with the new Gmail Inbox interface.                    

Podstawowe informacje o rozszerzeniu

Nazwa PixelBlock 2 PixelBlock 2
ID eaheehidcidghlmmpdogfhgmibpelndm
Oficjalny URL https://chromewebstore.google.com/detail/pixelblock-2/eaheehidcidghlmmpdogfhgmibpelndm
Opis PixelBlock 2 is a Gmail extension that blocks people from tracking when you open/read their emails. A fork of the original.
Rozmiar pliku 156 KB
Liczba instalacji 9,000
Aktualna Wersja 2018.06.27
Ostatnia Aktualizacja 2018-06-27
Data Publikacji 2018-06-27
Ocena 3.40/5 Łącznie 5 Oceny
Deweloper Tab Manager Plus
E-mail [email protected]
Typ Płatności free
Adres URL Strony Polityki Prywatności https://github.com/stefanXO/Tab-Manager-Plus/blob/master/PRIVACY.md
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "PixelBlock 2",
    "short_name": "PixelBlock 2",
    "version": "2018.06.27",
    "permissions": [
        "*:\/\/*.googleusercontent.com\/proxy\/*",
        "webRequest",
        "webRequestBlocking"
    ],
    "description": "PixelBlock 2 is a Gmail extension that blocks people from tracking when you open\/read their emails. A fork of the original.",
    "background": {
        "scripts": [
            "bg.js"
        ],
        "persistent": true
    },
    "icons": {
        "48": "images\/logo48.png",
        "128": "images\/logo128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/mail.google.com\/*"
            ],
            "js": [
                "cs.js"
            ],
            "run_at": "document_end"
        }
    ],
    "web_accessible_resources": [
        "scripts\/*.js",
        "images\/*.png",
        "styles\/*.css"
    ]
}