Domain Blocker
Helps you hide ads, avoid tracking, load pages faster, fight procrastination
Cos'è Domain Blocker?
Domain Blocker è un'estensione di Chrome sviluppata da Peta Sittek, e la sua funzione principale è "Helps you hide ads, avoid tracking, load pages faster, fight procrastination".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Domain Blocker
Scarica i file di estensione Domain Blocker in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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
Informazioni di Base sull'Estensione
Nome | |
ID | ggdcjplapccgoinblmidpkoocfafajfa |
URL Ufficiale | https://chromewebstore.google.com/detail/domain-blocker/ggdcjplapccgoinblmidpkoocfafajfa |
Descrizione | Helps you hide ads, avoid tracking, load pages faster, fight procrastination |
Dimensione del File | 207 KB |
Conteggio Installazioni | 11,432 |
Versione Corrente | 1.6.2 |
Ultimo Aggiornamento | 2017-07-25 |
Data di Pubblicazione | 2017-07-25 |
Valutazione | 4.71/5 Totale 85 Valutazioni |
Sviluppatore | Peta Sittek |
[email protected] | |
Tipo di Pagamento | free |
URL della Pagina di Aiuto | https://chrome.google.com/webstore/detail/domain-blocker/ggdcjplapccgoinblmidpkoocfafajfa/support |
URL della Pagina della Politica sulla Privacy | https://www.petasittek.com/chrome-extensions-privacy-policy |
Lingue Supportate | 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", "*:\/\/*\/*" ] } |