PixelBlock
PixelBlock is a Gmail extension that blocks people from tracking when you open their emails.
PixelBlock क्या है?
PixelBlock omar.w.qureshi द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "PixelBlock is a Gmail extension that blocks people from tracking when you open their emails."।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में PixelBlock एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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 |
सहायता पृष्ठ 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" ] } |