PixelBlock

PixelBlock is a Gmail extension that blocks people from tracking when you open their emails.

Vad är PixelBlock?

PixelBlock är en Chrome-tillägg utvecklad av omar.w.qureshi, och dess huvudfunktion är "PixelBlock is a Gmail extension that blocks people from tracking when you open their emails.".

Tilläggsskärmbilder

screenshot

Ladda ner PixelBlock-förlängningens CRX-fil

Ladda ner PixelBlock-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

                        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äggande Information om Tillägg

Namn PixelBlock PixelBlock
ID jmpmfcjnflbcoidlgapblgpgbilinlem
Officiell webbadress https://chromewebstore.google.com/detail/pixelblock/jmpmfcjnflbcoidlgapblgpgbilinlem
Beskrivning PixelBlock is a Gmail extension that blocks people from tracking when you open their emails.
Filstorlek 177 KB
Antal Installationer 100,004
Aktuell Version 2023.12.13
Senast Uppdaterad 2023-12-12
Publiceringsdatum 2019-04-09
Betyg 3.66/5 Totalt 206 Betyg
Utvecklare omar.w.qureshi
E-post [email protected]
Betalningssätt free
Hjälpsida URL https://pixelblock.neocities.org
URL till Sekretesspolicy Sidan https://pixelblock.neocities.org
Stödda Språk 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"
    ]
}