PixelBlock

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

PixelBlockคืออะไร?

PixelBlock เป็นส่วนขยายของ Chrome ที่พัฒนาโดย omar.w.qureshi และคุณลักษณะหลักของมันคือ "PixelBlock is a Gmail extension that blocks people from tracking when you open their emails."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย PixelBlock

ดาวน์โหลดไฟล์ส่วนขยาย 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
อีเมล [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"
    ]
}