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 هو إضافة Chrome تم تطويرها بواسطة focus.extension.creator، والميزة الرئيسية لها هي "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

تحميل ملف CRX للإضافة Focus - Block websites and Avoid Distractions

قم بتنزيل ملفات الامتداد Focus - Block websites and Avoid Distractions بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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
عنوان URL الرسمي 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'"
}