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文件

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

擴展使用說明

                        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
官方網址 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\/*"
    ]
}