PixelBlock 2

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

Что такое PixelBlock 2?

PixelBlock 2 - это расширение Chrome, разработанное Tab Manager Plus, и его основная функция - "PixelBlock 2 is a Gmail extension that blocks people from tracking when you open/read their emails. A fork of the original.".

Снимки экрана расширения

screenshot
screenshot

Скачать файл CRX расширения PixelBlock 2

Скачайте файлы расширений PixelBlock 2 в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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.                    

Основная информация о расширении

Название PixelBlock 2 PixelBlock 2
ID eaheehidcidghlmmpdogfhgmibpelndm
Официальный URL https://chromewebstore.google.com/detail/pixelblock-2/eaheehidcidghlmmpdogfhgmibpelndm
Описание PixelBlock 2 is a Gmail extension that blocks people from tracking when you open/read their emails. A fork of the original.
Размер файла 156 KB
Количество установок 9,000
Текущая Версия 2018.06.27
Последнее Обновление 2018-06-27
Дата публикации 2018-06-27
Рейтинг 3.40/5 Всего 5 оценок
Разработчик Tab Manager Plus
Электронная почта [email protected]
Тип оплаты free
URL страницы политики конфиденциальности https://github.com/stefanXO/Tab-Manager-Plus/blob/master/PRIVACY.md
Поддерживаемые языки 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"
    ]
}