PixelBlock 2
PixelBlock 2 is a Gmail extension that blocks people from tracking when you open/read their emails. A fork of the original.
什麼是PixelBlock 2?
PixelBlock 2是由Tab Manager Plus開發的Chrome擴展程式,該擴展的主要功能是“PixelBlock 2 is a Gmail extension that blocks people from tracking when you open/read their emails. A fork of the original.”。
擴展截圖
下載PixelBlock 2擴展crx文件
下載PixelBlock 2擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
PixelBlock 2 is a Gmail extension that blocks people from tracking when you open or read their emails.
Note: PixelBlock 2 is a fork of the original PixelBlock extension, with small improvements to make it work with the new Gmail Inbox interface. 擴展基本資訊
| 名稱 | |
| ID | eaheehidcidghlmmpdogfhgmibpelndm |
| 官方網址 | https://chromewebstore.google.com/detail/pixelblock-2/eaheehidcidghlmmpdogfhgmibpelndm |
| 簡介 | PixelBlock 2 is a Gmail extension that blocks people from tracking when you open/read their emails. A fork of the original. |
| 檔案大小 | 156 KB |
| 安裝次數 | 9,000 |
| 目前版本 | 2018.06.27 |
| 更新時間 | 2018-06-27 |
| 上架時間 | 2018-06-27 |
| 評分 | 3.40/5 共 5 次評分 |
| 開發者 | Tab Manager Plus |
| 電子郵箱 | [email protected] |
| 付費類型 | free |
| 隱私政策頁面URL | https://github.com/stefanXO/Tab-Manager-Plus/blob/master/PRIVACY.md |
| 支援的語言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 2,
"name": "PixelBlock 2",
"short_name": "PixelBlock 2",
"version": "2018.06.27",
"permissions": [
"*:\/\/*.googleusercontent.com\/proxy\/*",
"webRequest",
"webRequestBlocking"
],
"description": "PixelBlock 2 is a Gmail extension that blocks people from tracking when you open\/read their emails. A fork of the original.",
"background": {
"scripts": [
"bg.js"
],
"persistent": true
},
"icons": {
"48": "images\/logo48.png",
"128": "images\/logo128.png"
},
"content_scripts": [
{
"matches": [
"*:\/\/mail.google.com\/*"
],
"js": [
"cs.js"
],
"run_at": "document_end"
}
],
"web_accessible_resources": [
"scripts\/*.js",
"images\/*.png",
"styles\/*.css"
]
} | |