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

¿Qué es Focus - Block websites and Avoid Distractions?

Focus - Block websites and Avoid Distractions es una extensión de Chrome desarrollada por focus.extension.creator, y su función principal es "Block sites easily (or set a maximum time limit) and be productive. Has scheduling, whitelist mode, redirect when blocked and more".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión Focus - Block websites and Avoid Distractions

Descarga archivos de extensión Focus - Block websites and Avoid Distractions en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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!                    

Información Básica de la Extensión

Nombre Focus - Block websites and Avoid Distractions Focus - Block websites and Avoid Distractions
ID cmpcccmjcjdkoecnldeaknbheifehenm
URL Oficial https://chrome.google.com/webstore/detail/focus-block-websites-and/cmpcccmjcjdkoecnldeaknbheifehenm
Descripción Block sites easily (or set a maximum time limit) and be productive. Has scheduling, whitelist mode, redirect when blocked and more
Tamaño del Archivo 1.26 MB
Cantidad de Instalaciones 96
Versión Actual 0.1.28
Última Actualización 2018-10-07
Fecha de Publicación 2018-10-07
Calificación 5.00/5 Total de 3 Calificaciones
Desarrollador focus.extension.creator
Correo electrónico [email protected]
Tipo de Pago free
Idiomas Soportados 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'"
}