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
公式URL 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
Eメール [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"
    ]
}