PixelBlock

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

什麼是PixelBlock?

PixelBlock是由omar.w.qureshi開發的Chrome擴展程式,該擴展的主要功能是“PixelBlock is a Gmail extension that blocks people from tracking when you open their emails.”。

擴展截圖

screenshot

下載PixelBlock擴展crx文件

下載PixelBlock擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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.                    

擴展基本資訊

名稱 PixelBlock PixelBlock
ID jmpmfcjnflbcoidlgapblgpgbilinlem
官方網址 https://chromewebstore.google.com/detail/pixelblock/jmpmfcjnflbcoidlgapblgpgbilinlem
簡介 PixelBlock is a Gmail extension that blocks people from tracking when you open their emails.
檔案大小 177 KB
安裝次數 100,004
目前版本 2023.12.13
更新時間 2023-12-12
上架時間 2019-04-09
評分 3.66/5 共 206 次評分
開發者 omar.w.qureshi
電子郵箱 [email protected]
付費類型 free
說明頁面URL https://pixelblock.neocities.org
隱私政策頁面URL https://pixelblock.neocities.org
支援的語言 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"
    ]
}