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.”。
扩展截图
下载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. 扩展基本信息
| 名称 | |
| 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"
]
} | |