PixelBlock
PixelBlock is a Gmail extension that blocks people from tracking when you open their emails.
Hvad er PixelBlock?
PixelBlock er en Chrome-udvidelse udviklet af omar.w.qureshi, og dens hovedfunktion er "PixelBlock is a Gmail extension that blocks people from tracking when you open their emails.".
Udvidelsesskærmbilleder
Download PixelBlock-udvidelses-CRX-fil
Download PixelBlock-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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. Grundlæggende oplysninger om udvidelsen
| Navn | |
| ID | jmpmfcjnflbcoidlgapblgpgbilinlem |
| Officiel URL | https://chromewebstore.google.com/detail/pixelblock/jmpmfcjnflbcoidlgapblgpgbilinlem |
| Beskrivelse | PixelBlock is a Gmail extension that blocks people from tracking when you open their emails. |
| Filstørrelse | 177 KB |
| Antal Installationer | 100,004 |
| Nuværende Version | 2023.12.13 |
| Senest Opdateret | 2023-12-12 |
| Udgivelsesdato | 2019-04-09 |
| Bedømmelse | 3.66/5 Samlet 206 Bedømmelser |
| Udvikler | omar.w.qureshi |
| [email protected] | |
| Betalingsmetode | free |
| Hjælpeside-URL | https://pixelblock.neocities.org |
| URL til Fortrolighedspolitik Side | https://pixelblock.neocities.org |
| Understøttede Sprog | 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"
]
} | |