PixelBlock
PixelBlock is a Gmail extension that blocks people from tracking when you open their emails.
Что такое PixelBlock?
PixelBlock - это расширение Chrome, разработанное omar.w.qureshi, и его основная функция - "PixelBlock is a Gmail extension that blocks people from tracking when you open their emails.".
Снимки экрана расширения
Скачать файл CRX расширения PixelBlock
Скачайте файлы расширений PixelBlock в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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 |
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" ] } |