Ugly Email
Get Back Your Email Privacy, Block Email Tracking.
What is Ugly Email?
Ugly Email is a Chrome extension developed by https://uglyemail.com, and its main feature is "Get Back Your Email Privacy, Block Email Tracking.".
Extension Screenshots
Download Ugly Email Extension CRX File
Download Ugly Email 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
The #1 downloaded Gmail extension for blocking read receipts and other email tracking pixels. Ugly Email is an open-source Gmail extension for identifying and blocking email trackers. Ugly Email scans through your inbox and looks for emails containing tracking pixels. Tracked emails are labeled with an eyeball icon, and the tracking pixel is blocked. All of the Ugly Email data is stored on your browser's IndexDB storage locally. We do not track, transfer, or store any of your information.
Extension Basic Information
Name | Ugly Email |
ID | ldgiafaliifpknmgofiifianlnbgflgj |
Official URL | https://chromewebstore.google.com/detail/ugly-email/ldgiafaliifpknmgofiifianlnbgflgj |
Description | Get Back Your Email Privacy, Block Email Tracking. |
File Size | 219 KB |
Installation Count | 92,881 |
Current Version | 4.1.1 |
Last Updated | 2022-06-07 |
Publish Date | 2018-07-07 |
Rating | 3.68/5 Total 339 Ratings |
Developer | https://uglyemail.com |
[email protected] | |
Payment Type | free |
Extension Website | https://uglyemail.com |
Help Page URL | https://uglyemail.com |
Privacy Policy Page URL | https://uglyemail.com/privacy-policy |
Supported Languages | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Ugly Email", "short_name": "Ugly Email", "version": "4.1.1", "description": "Get Back Your Email Privacy, Block Email Tracking.", "author": "OneClick Lab", "homepage_url": "http:\/\/uglyemail.com", "manifest_version": 2, "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'", "content_scripts": [ { "matches": [ "https:\/\/mail.google.com\/*" ], "js": [ "loader.js" ], "run_at": "document_end" } ], "web_accessible_resources": [ "uglyemail.js" ], "permissions": [ "webRequest", "webRequestBlocking", "https:\/\/mail.google.com\/*", "*:\/\/*.googleusercontent.com\/proxy\/*" ], "background": { "scripts": [ "background.js" ], "persistent": true }, "icons": { "16": "icons\/Icon-16.png", "48": "icons\/Icon-48.png", "128": "icons\/Icon.png" } } |