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

什麼是Focus - Block websites and Avoid Distractions?

Focus - Block websites and Avoid Distractions是由focus.extension.creator開發的Chrome擴展程式,該擴展的主要功能是“Block sites easily (or set a maximum time limit) and be productive. Has scheduling, whitelist mode, redirect when blocked and more”。

擴展截圖

screenshot
screenshot
screenshot
screenshot
screenshot

下載Focus - Block websites and Avoid Distractions擴展crx文件

下載Focus - Block websites and Avoid Distractions擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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!                    

擴展基本資訊

名稱 Focus - Block websites and Avoid Distractions Focus - Block websites and Avoid Distractions
ID cmpcccmjcjdkoecnldeaknbheifehenm
官方網址 https://chrome.google.com/webstore/detail/focus-block-websites-and/cmpcccmjcjdkoecnldeaknbheifehenm
簡介 Block sites easily (or set a maximum time limit) and be productive. Has scheduling, whitelist mode, redirect when blocked and more
檔案大小 1.26 MB
安裝次數 96
目前版本 0.1.28
更新時間 2018-10-07
上架時間 2018-10-07
評分 5.00/5 共 3 次評分
開發者 focus.extension.creator
電子郵箱 [email protected]
付費類型 free
支援的語言 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'"
}