Ugly Email
Get Back Your Email Privacy, Block Email Tracking.
Vad är Ugly Email?
Ugly Email är en Chrome-tillägg utvecklad av https://uglyemail.com, och dess huvudfunktion är "Get Back Your Email Privacy, Block Email Tracking.".
Tilläggsskärmbilder
Ladda ner Ugly Email-förlängningens CRX-fil
Ladda ner Ugly Email-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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.
Grundläggande Information om Tillägg
Namn | Ugly Email |
ID | ldgiafaliifpknmgofiifianlnbgflgj |
Officiell webbadress | https://chromewebstore.google.com/detail/ugly-email/ldgiafaliifpknmgofiifianlnbgflgj |
Beskrivning | Get Back Your Email Privacy, Block Email Tracking. |
Filstorlek | 219 KB |
Antal Installationer | 92,881 |
Aktuell Version | 4.1.1 |
Senast Uppdaterad | 2022-06-07 |
Publiceringsdatum | 2018-07-07 |
Betyg | 3.68/5 Totalt 339 Betyg |
Utvecklare | https://uglyemail.com |
E-post | [email protected] |
Betalningssätt | free |
Tilläggswebbplats | https://uglyemail.com |
Hjälpsida URL | https://uglyemail.com |
URL till Sekretesspolicy Sidan | https://uglyemail.com/privacy-policy |
Stödda Språk | 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" } } |