SiteBlocker

Stop mindless browsing.

Τι είναι το SiteBlocker;

Το SiteBlocker είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον LionByte Software, και η κύρια λειτουργία του είναι "Stop mindless browsing.".

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

screenshot
screenshot

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

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

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

                        Finding it hard to stay productive? Easily block distracting websites. SiteBlocker is a cross-browser website/URL blocker that helps you to manage your website usage and manage distractions and addictions. This tool can help you stop procrastinating and it lets you get the job done! 

🌟Features🌟

Blocking a website has never been easier! Just write the link of the website and add it to the black list. Alternatively, you can block the site you are on instantly. 

⚡Multiple Lists
It's easy to organize what you are doing when you are in control. With the latest update, you can create multiple categories of lists for websites. One for Social Media, one for blogs and so on. You can enable or disable them depending on what you want to be accesible.

🔞Adult Content
Wanna block those? We already have a list with the most popular adult sites that need to be blocked, but if you want to add, just create another list and enable it.

💻Sync
Synchronize your devices. If you use Chrome, you get for free the ability to import your black list. Just make sure you are logged into your Google account into both devices, but other than that, no account needed!

🎃 Dark mode


Your privacy is important to us. There is no data collected with this app!

We realise that the extension is in its early stages. We got a lot of new features coming soon!

*Note*
To block sites in Incognito mode, you need to activate 'Allow run in incognito mode' checkbox  in chrome://extensions page.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα SiteBlocker SiteBlocker
ID aadnooghcahhgmkhkhkoflblfbhcndig
Επίσημο URL https://chromewebstore.google.com/detail/siteblocker/aadnooghcahhgmkhkhkoflblfbhcndig
Περιγραφή Stop mindless browsing.
Μέγεθος Αρχείου 263 KB
Αριθμός Εγκαταστάσεων 1,051
Τρέχουσα Έκδοση 1.2
Τελευταία Ενημέρωση 2022-09-06
Ημερομηνία Δημοσίευσης 2021-07-20
Αξιολόγηση 3.67/5 Συνολικά 6 Αξιολογήσεις
Προγραμματιστής LionByte Software
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://lionbyte.co/siteblocker
Υποστηριζόμενες Γλώσσες en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "SiteBlocker",
    "version": "1.2",
    "manifest_version": 3,
    "description": "Stop mindless browsing.",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "siteBlocker.js"
            ],
            "run_at": "document_start"
        }
    ],
    "action": {
        "default_popup": "index.html",
        "default_icon": "icon.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "icons": {
        "16": "icon.png",
        "48": "icon.png",
        "128": "icon.png"
    },
    "permissions": [
        "notifications",
        "tabs",
        "storage"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "blocked.html"
            ],
            "matches": [
                ""
            ]
        }
    ]
}