PixelBlock 2
PixelBlock 2 is a Gmail extension that blocks people from tracking when you open/read their emails. A fork of the original.
Was ist PixelBlock 2?
PixelBlock 2 ist eine Chrome-Erweiterung, die von Tab Manager Plus entwickelt wurde, und ihr Hauptmerkmal ist "PixelBlock 2 is a Gmail extension that blocks people from tracking when you open/read their emails. A fork of the original.".
Erweiterungsscreenshots
PixelBlock 2-Erweiterungs-CRX-Datei herunterladen
Laden Sie PixelBlock 2-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 2 is a Gmail extension that blocks people from tracking when you open or read their emails.
Note: PixelBlock 2 is a fork of the original PixelBlock extension, with small improvements to make it work with the new Gmail Inbox interface. Grundlegende Informationen zur Erweiterung
| Name | |
| ID | eaheehidcidghlmmpdogfhgmibpelndm |
| Offizielle URL | https://chromewebstore.google.com/detail/pixelblock-2/eaheehidcidghlmmpdogfhgmibpelndm |
| Beschreibung | PixelBlock 2 is a Gmail extension that blocks people from tracking when you open/read their emails. A fork of the original. |
| Dateigröße | 156 KB |
| Installationsanzahl | 9,000 |
| Aktuelle Version | 2018.06.27 |
| Letztes Update | 2018-06-27 |
| Veröffentlichungsdatum | 2018-06-27 |
| Bewertung | 3.40/5 Insgesamt 5 Bewertungen |
| Entwickler | Tab Manager Plus |
| [email protected] | |
| Zahlungsart | free |
| URL der Datenschutzrichtlinien-Seite | https://github.com/stefanXO/Tab-Manager-Plus/blob/master/PRIVACY.md |
| Unterstützte Sprachen | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "PixelBlock 2",
"short_name": "PixelBlock 2",
"version": "2018.06.27",
"permissions": [
"*:\/\/*.googleusercontent.com\/proxy\/*",
"webRequest",
"webRequestBlocking"
],
"description": "PixelBlock 2 is a Gmail extension that blocks people from tracking when you open\/read their emails. A fork of the original.",
"background": {
"scripts": [
"bg.js"
],
"persistent": true
},
"icons": {
"48": "images\/logo48.png",
"128": "images\/logo128.png"
},
"content_scripts": [
{
"matches": [
"*:\/\/mail.google.com\/*"
],
"js": [
"cs.js"
],
"run_at": "document_end"
}
],
"web_accessible_resources": [
"scripts\/*.js",
"images\/*.png",
"styles\/*.css"
]
} | |