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.".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة PixelBlock
قم بتنزيل ملفات الامتداد PixelBlock بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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 |
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 |
عنوان صفحة المساعدة | https://pixelblock.neocities.org |
عنوان صفحة سياسة الخصوصية | 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" ] } |