Domain Blocker

Helps you hide ads, avoid tracking, load pages faster, fight procrastination

Τι είναι το Domain Blocker;

Το Domain Blocker είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Peta Sittek, και η κύρια λειτουργία του είναι "Helps you hide ads, avoid tracking, load pages faster, fight procrastination".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Domain Blocker

Λήψη αρχείων επέκτασης Domain Blocker σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        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 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",
        "*:\/\/*\/*"
    ]
}