Time Out : Page Blocker

Blocks sites until you've held the button

Time Out : Page Blocker란 무엇입니까?

Time Out : Page Blocker은(는) Alex Wright (alexwmw)에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Blocks sites until you've held the button"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Time Out : Page Blocker 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Time Out: Page Blocker is your go-to Chrome extension for boosting productivity and maintaining focus during your online sessions. Say goodbye to distractions and regain control over your browsing habits.

Key Features:

☑️ Tailored Website Blocking: Select and block distracting websites of your choice, ensuring undisturbed focus during work or study sessions.

☑️ User-Controlled Access: Unlike conventional blockers, Time Out introduces a unique approach. When attempting to access a blocked site, the extension prompts users to hold down a button for a set time, enabling a conscious decision before accessing the site.

☑️ Mindful Internet Usage: Encourages users to pause and reflect on their intent to visit a blocked site, fostering mindfulness in online activities.

☑️ Frustration Prevention: Avoids user frustration by offering a flexible approach to website blocking, reducing the urge to disable the extension altogether.

☑️ Improved Self-regulation: By providing the choice to pause and consider whether they genuinely intended to visit a blocked website, users can develop better self-regulation and control over their online habits.

☑️ Scheduling Options: Set specific hours for website blocking, allowing dedicated work or study periods while granting access during specified hours.

Empower yourself to take charge of your online focus and productivity with Time Out: Page Blocker. Stay on track, limit distractions, and accomplish more in your browsing sessions.                    

확장 프로그램 기본 정보

이름 Time Out : Page Blocker Time Out : Page Blocker
ID hoeinipdpcnbifnmdkfbgmpaccbjpinl
공식 URL https://chromewebstore.google.com/detail/time-out-page-blocker/hoeinipdpcnbifnmdkfbgmpaccbjpinl
설명 Blocks sites until you've held the button
파일 크기 1.38 MB
설치 횟수 252
현재 버전 2.0.1
최근 업데이트 2023-12-01
출시 날짜 2021-07-03
평점 5.00/5 총 5 개의 평점
개발자 Alex Wright (alexwmw)
이메일 [email protected]
결제 유형 free
지원되는 언어 en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "2.0.1",
    "manifest_version": 3,
    "name": "Time Out : Page Blocker",
    "description": "Blocks sites until you've held the button",
    "permissions": [
        "storage",
        "contextMenus",
        "tabs"
    ],
    "action": {
        "default_icon": {
            "16": "icons\/icon16.png",
            "32": "icons\/icon32.png",
            "48": "icons\/icon48.png",
            "128": "icons\/icon128.png"
        },
        "default_title": "Time Out : Page Blocker",
        "default_popup": "index.html"
    },
    "icons": {
        "16": "icons\/icon16.png",
        "32": "icons\/icon32.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "js": [
                "content.bundle.js"
            ],
            "run_at": "document_start"
        }
    ],
    "background": {
        "service_worker": "background.bundle.js"
    },
    "options_page": "options.html",
    "web_accessible_resources": [
        {
            "resources": [
                "icons\/*",
                "images\/*",
                "page-block.html"
            ],
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ]
        }
    ]
}