Domain Blocker
Helps you hide ads, avoid tracking, load pages faster, fight procrastination
Domain Blocker क्या है?
Domain Blocker Peta Sittek द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Helps you hide ads, avoid tracking, load pages faster, fight procrastination"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Domain Blocker एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
Domain Blocker is written to be as efficient as possible, in terms of speed (CPU) and memory (RAM). The main idea is that there's little meaning to use predefined blocklist consisting of tens of thousands rules when you'll ever use only small percentage of it. In Domain Blocker you build the blocklist as you go along. 🚀 Hide ads ⭐️ by blocking advertisement domains you disable the display of some of those pervasive ads 🚀 Avoid tracking ⭐️ by blocking tracking domains you prevent the services to acquire information about your browsing behaviour 🚀 Load pages faster ⭐️ by blocking unnecessary domains (requests) you save traffic and make pages loading faster! 🚀 Fight procrastination ⭐️ just keep facebook.com out of the Whitelist and... do more! 🚀 Permissions explained ⭐️ "Read and change all your data on the websites you visit": to be able to intercept HTTP request before they leave your browser Completely free and with no ads Made with ♥ by Peta Sittek
एक्सटेंशन की मूल जानकारी
नाम | Domain Blocker |
ID | ggdcjplapccgoinblmidpkoocfafajfa |
आधिकारिक URL | https://chromewebstore.google.com/detail/domain-blocker/ggdcjplapccgoinblmidpkoocfafajfa |
विवरण | Helps you hide ads, avoid tracking, load pages faster, fight procrastination |
फ़ाइल का आकार | 207 KB |
स्थापना संख्या | 11,432 |
वर्तमान संस्करण | 1.6.2 |
अंतिम अपडेट | 2017-07-25 |
प्रकाशन तिथि | 2017-07-25 |
रेटिंग | 4.71/5 कुल 85 रेटिंग्स |
डेवलपर | Peta Sittek |
ईमेल | [email protected] |
भुगतान के प्रकार | free |
सहायता पृष्ठ URL | https://chrome.google.com/webstore/detail/domain-blocker/ggdcjplapccgoinblmidpkoocfafajfa/support |
गोपनीयता नीति पृष्ठ URL | https://www.petasittek.com/chrome-extensions-privacy-policy |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Domain Blocker", "description": "Helps you hide ads, avoid tracking, load pages faster, fight procrastination", "version": "1.6.2", "icons": { "16": "icon\/icon-16.png", "32": "icon\/icon-32.png", "48": "icon\/icon-48.png", "128": "icon\/icon-128.png" }, "browser_action": { "default_icon": { "19": "icon\/icon-19.png", "38": "icon\/icon-38.png" }, "default_popup": "html\/popup.html", "default_title": "Domain Blocker" }, "background": { "scripts": [ "js\/background.js" ] }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "js\/content.js" ], "run_at": "document_start" } ], "permissions": [ "storage", "unlimitedStorage", "contextMenus", "webRequest", "webRequestBlocking", "*:\/\/*\/*" ] } |