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

Hvad er Focus - Block websites and Avoid Distractions?

Focus - Block websites and Avoid Distractions er en Chrome-udvidelse udviklet af focus.extension.creator, og dens hovedfunktion er "Block sites easily (or set a maximum time limit) and be productive. Has scheduling, whitelist mode, redirect when blocked and more".

Udvidelsesskærmbilleder

screenshot
screenshot
screenshot
screenshot
screenshot

Download Focus - Block websites and Avoid Distractions-udvidelses-CRX-fil

Download Focus - Block websites and Avoid Distractions-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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!                    

Grundlæggende oplysninger om udvidelsen

Navn Focus - Block websites and Avoid Distractions Focus - Block websites and Avoid Distractions
ID cmpcccmjcjdkoecnldeaknbheifehenm
Officiel URL https://chrome.google.com/webstore/detail/focus-block-websites-and/cmpcccmjcjdkoecnldeaknbheifehenm
Beskrivelse Block sites easily (or set a maximum time limit) and be productive. Has scheduling, whitelist mode, redirect when blocked and more
Filstørrelse 1.26 MB
Antal Installationer 96
Nuværende Version 0.1.28
Senest Opdateret 2018-10-07
Udgivelsesdato 2018-10-07
Bedømmelse 5.00/5 Samlet 3 Bedømmelser
Udvikler focus.extension.creator
E-mail [email protected]
Betalingsmetode free
Understøttede Sprog 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'"
}