PixelBlock
PixelBlock is a Gmail extension that blocks people from tracking when you open their emails.
PixelBlock là gì?
PixelBlock là một tiện ích mở rộng Chrome được phát triển bởi omar.w.qureshi, và tính năng chính của nó là "PixelBlock is a Gmail extension that blocks people from tracking when you open their emails.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng PixelBlock
Tải xuống các tệp mở rộng PixelBlock dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | PixelBlock |
ID | jmpmfcjnflbcoidlgapblgpgbilinlem |
URL Chính Thức | https://chromewebstore.google.com/detail/pixelblock/jmpmfcjnflbcoidlgapblgpgbilinlem |
Mô tả | PixelBlock is a Gmail extension that blocks people from tracking when you open their emails. |
Kích Thước Tệp | 177 KB |
Số Lần Cài Đặt | 100,004 |
Phiên Bản Hiện Tại | 2023.12.13 |
Cập Nhật Lần Cuối | 2023-12-12 |
Ngày Phát Hành | 2019-04-09 |
Đánh Giá | 3.66/5 Tổng số 206 Đánh Giá |
Nhà Phát Triển | omar.w.qureshi |
[email protected] | |
Loại Thanh Toán | free |
URL Trang Trợ Giúp | https://pixelblock.neocities.org |
URL Trang Chính Sách Bảo Mật | https://pixelblock.neocities.org |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } |