Ugly Email

Get Back Your Email Privacy, Block Email Tracking.

Was ist Ugly Email?

Ugly Email ist eine Chrome-Erweiterung, die von https://uglyemail.com entwickelt wurde, und ihr Hauptmerkmal ist "Get Back Your Email Privacy, Block Email Tracking.".

Erweiterungsscreenshots

screenshot

Ugly Email-Erweiterungs-CRX-Datei herunterladen

Laden Sie Ugly Email-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Ugly Email Ugly Email
ID ldgiafaliifpknmgofiifianlnbgflgj
Offizielle URL https://chromewebstore.google.com/detail/ugly-email/ldgiafaliifpknmgofiifianlnbgflgj
Beschreibung Get Back Your Email Privacy, Block Email Tracking.
Dateigröße 219 KB
Installationsanzahl 92,881
Aktuelle Version 4.1.1
Letztes Update 2022-06-07
Veröffentlichungsdatum 2018-07-07
Bewertung 3.68/5 Insgesamt 339 Bewertungen
Entwickler https://uglyemail.com
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://uglyemail.com
Hilfeseite URL https://uglyemail.com
URL der Datenschutzrichtlinien-Seite https://uglyemail.com/privacy-policy
Unterstützte Sprachen 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"
    }
}