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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Tab Manager Plus และคุณลักษณะหลักของมันคือ "PixelBlock 2 is a Gmail extension that blocks people from tracking when you open/read their emails. A fork of the original."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย PixelBlock 2
ดาวน์โหลดไฟล์ส่วนขยาย 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 |
| URL อย่างเป็นทางการ | 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"
]
} | |