PixelBlock
PixelBlock is a Gmail extension that blocks people from tracking when you open their emails.
Was ist PixelBlock?
PixelBlock ist eine Chrome-Erweiterung, die von omar.w.qureshi entwickelt wurde, und ihr Hauptmerkmal ist "PixelBlock is a Gmail extension that blocks people from tracking when you open their emails.".
Erweiterungsscreenshots
PixelBlock-Erweiterungs-CRX-Datei herunterladen
Laden Sie PixelBlock-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
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. Grundlegende Informationen zur Erweiterung
| Name | |
| ID | jmpmfcjnflbcoidlgapblgpgbilinlem |
| Offizielle URL | https://chromewebstore.google.com/detail/pixelblock/jmpmfcjnflbcoidlgapblgpgbilinlem |
| Beschreibung | PixelBlock is a Gmail extension that blocks people from tracking when you open their emails. |
| Dateigröße | 177 KB |
| Installationsanzahl | 100,004 |
| Aktuelle Version | 2023.12.13 |
| Letztes Update | 2023-12-12 |
| Veröffentlichungsdatum | 2019-04-09 |
| Bewertung | 3.66/5 Insgesamt 206 Bewertungen |
| Entwickler | omar.w.qureshi |
| [email protected] | |
| Zahlungsart | free |
| Hilfeseite URL | https://pixelblock.neocities.org |
| URL der Datenschutzrichtlinien-Seite | https://pixelblock.neocities.org |
| Unterstützte Sprachen | 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"
]
} | |