Focus - Block websites and Avoid Distractions

Block sites easily (or set a maximum time limit) and be productive. Has scheduling, whitelist mode, redirect when blocked and more

Cos'è Focus - Block websites and Avoid Distractions?

Focus - Block websites and Avoid Distractions è un'estensione di Chrome sviluppata da focus.extension.creator, e la sua funzione principale è "Block sites easily (or set a maximum time limit) and be productive. Has scheduling, whitelist mode, redirect when blocked and more".

Screenshot dell'Estensione

screenshot
screenshot
screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Focus - Block websites and Avoid Distractions

Scarica i file di estensione Focus - Block websites and Avoid Distractions 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

                        Block any website easily (such as Facebook, Twitter, Twitch, ...), stay focused and do great work. Stop wasting hours on distracting sites and use your day better. 

★ Block sites
Block any site easily to be productive. For example, if you want to block Facebook, add 'facebook.com' to your blocklist and every time you try to access Facebook, a "Blocked" page will be shown instead.

★ Scheduling
With Focus, you can create schedules, such as "Block Twitter and Youtube from Monday to Friday from 8AM to 5PM" or "Block social media after 10PM every day".

★ Maximum time per day
If you want to browse a useful site (ex: Facebook) each day, but not for too long, you can easily do so by setting a maximum time allowed per day (ex: 1 hour). This way, you can still access it but you don't waste too much time.

★ Multiple Blocklists
You can have multiple blocklists, each having a list of blocked sites and their own schedule. This allows you, for example, to block Social Media only after 10PM and News only during weekdays.

★ Pre-made suggestions
Add common sites very quickly thanks to ready-made suggestions such as Facebook, Twitter, Reddit, Youtube, Instagram, and many more...

★ Whitelist Mode
When you really need to focus, you can start Whitelist mode, which blocks all websites. If you want, you can add some exceptions though, which is useful if you want to force yourself to only access some sites and block every other.

★ Freeze mode
To avoid cheating, you can activate freeze mode, which will make it impossible to unblock sites for a certain amount of time. For example, if you blocked Youtube, Freeze mode will make it impossible to cheat to unblock it.

★ Redirect when reaching a blocked page
If you visit a blocked website, Focus can re-direct you to a different page. This can be anything, from the New York Times to a beautiful images site. Your imagination is the limit.


Install now!                    

Informazioni di Base sull'Estensione

Nome Focus - Block websites and Avoid Distractions Focus - Block websites and Avoid Distractions
ID cmpcccmjcjdkoecnldeaknbheifehenm
URL Ufficiale https://chrome.google.com/webstore/detail/focus-block-websites-and/cmpcccmjcjdkoecnldeaknbheifehenm
Descrizione Block sites easily (or set a maximum time limit) and be productive. Has scheduling, whitelist mode, redirect when blocked and more
Dimensione del File 1.26 MB
Conteggio Installazioni 96
Versione Corrente 0.1.28
Ultimo Aggiornamento 2018-10-07
Data di Pubblicazione 2018-10-07
Valutazione 5.00/5 Totale 3 Valutazioni
Sviluppatore focus.extension.creator
Email [email protected]
Tipo di Pagamento free
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Focus - Block websites and Avoid Distractions",
    "short_name": "Focus",
    "description": "Block sites easily (or set a maximum time limit) and be productive. Has scheduling, whitelist mode, redirect when blocked and more",
    "version": "0.1.28",
    "author": "Focus Creator",
    "applications": {
        "gecko": {
            "id": "[email protected]",
            "strict_min_version": "42.0"
        }
    },
    "icons": {
        "16": "images\/focus16.png",
        "32": "images\/focus32.png",
        "48": "images\/focus48.png",
        "128": "images\/focus128.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "run_at": "document_start",
            "js": [
                "lib\/jquery-3.3.1.min.js",
                "lib\/lodash.min.js",
                "lib\/moment.min.js",
                "dist\/common.js",
                "dist\/schedule.js",
                "dist\/content.js"
            ]
        }
    ],
    "permissions": [
        "https:\/\/127.0.0.1\/isBlocked*",
        "https:\/\/localhost\/isBlocked*",
        "storage",
        "alarms",
        "tabs"
    ],
    "browser_action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "images\/focus16.png",
            "32": "images\/focus32.png",
            "48": "images\/focus48.png",
            "128": "images\/focus128.png"
        }
    },
    "background": {
        "scripts": [
            "lib\/jquery-3.3.1.min.js",
            "lib\/moment.min.js",
            "lib\/lodash.min.js",
            "dist\/common.js",
            "dist\/schedule.js",
            "dist\/background.js"
        ]
    },
    "web_accessible_resources": [
        "images\/*.png",
        "images\/*.jpg"
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}