PixelBlock
PixelBlock is a Gmail extension that blocks people from tracking when you open their emails.
What is PixelBlock?
PixelBlock is a Chrome extension developed by omar.w.qureshi, and its main feature is "PixelBlock is a Gmail extension that blocks people from tracking when you open their emails.".
Extension Screenshots
Download PixelBlock Extension CRX File
Download PixelBlock extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | PixelBlock |
ID | jmpmfcjnflbcoidlgapblgpgbilinlem |
Official URL | https://chromewebstore.google.com/detail/pixelblock/jmpmfcjnflbcoidlgapblgpgbilinlem |
Description | PixelBlock is a Gmail extension that blocks people from tracking when you open their emails. |
File Size | 177 KB |
Installation Count | 100,004 |
Current Version | 2023.12.13 |
Last Updated | 2023-12-12 |
Publish Date | 2019-04-09 |
Rating | 3.66/5 Total 206 Ratings |
Developer | omar.w.qureshi |
[email protected] | |
Payment Type | free |
Help Page URL | https://pixelblock.neocities.org |
Privacy Policy Page URL | https://pixelblock.neocities.org |
Supported Languages | 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" ] } |