Focus Mode - Stay Focused & Block Sites

Stay focused like humans, no robots.

Focus Mode - Stay Focused & Block Sites란 무엇입니까?

Focus Mode - Stay Focused & Block Sites은(는) https://focusmode.app에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Stay focused like humans, no robots."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

Focus Mode - Stay Focused & Block Sites 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        FocusMode makes you think before you ended up mindlessly scrolling when browsing the web. 

Only access distracting websites with an informed decision, no more wasting time without you realised.

Instead of forcing you to stay focused, this extension gives you options to take a break or turn off focus mode easily.

Features:
Stay focused for hours longer
- Whether you're trying to focus on work, school, reading, or studying - get more things done in a shorter time.

Take a break when you need it
-  Our extension lets you to take a break and resume whenever you want without forcing you to be focused.

Works on any websites
- Use our predefined distracting website links or make your own list of any websites you want to block.

Dark mode
- Turn on dark mode if you are still on the dark mode hype train.

Privacy-first
Your history and browser data is stored in your own local computer. In other words, your data is safe.

Support the developer: https://www.buymeacoffee.com/umarluqman                    

확장 프로그램 기본 정보

이름 Focus Mode - Stay Focused & Block Sites Focus Mode - Stay Focused & Block Sites
ID ollmdedpknmlcdmpehclmgbogpifahdc
공식 URL https://chromewebstore.google.com/detail/focus-mode-stay-focused-b/ollmdedpknmlcdmpehclmgbogpifahdc
설명 Stay focused like humans, no robots.
파일 크기 344 KB
설치 횟수 11,244
현재 버전 1.5.2
최근 업데이트 2023-11-21
출시 날짜 2021-02-15
평점 4.21/5 총 33 개의 평점
개발자 https://focusmode.app
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://focusmode.app
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "version": "1.5.2",
    "name": "Focus Mode - Stay Focused & Block Sites",
    "short_name": "Focus Mode",
    "description": "Stay focused like humans, no robots.",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "browser_action": {
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "all_frames": false,
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "icons": {
        "16": "assets\/img\/16x16.png",
        "48": "assets\/img\/48x48.png"
    },
    "permissions": [
        "storage",
        "tabs"
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'; connect-src ws:\/\/localhost:*\/",
    "web_accessible_resources": [
        "assets\/img\/*"
    ]
}