Simple Focus Mode

A Chrome extension to improve productivity and reduce distractions.

什麼是Simple Focus Mode?

Simple Focus Mode是由Jaroslav Pantsjoha開發的Chrome擴展程式,該擴展的主要功能是“A Chrome extension to improve productivity and reduce distractions.”。

擴展截圖

screenshot

下載Simple Focus Mode擴展crx文件

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

擴展使用說明

                        This is a Simple Focus Timer Extension for Google Chrome. It helps users improve productivity by breaking their workshops, meetings and any other work into focused intervals. The extension allows users to start a timed session, from 1 minute to 120 minutes, with an audible alert on timer completing.                    

擴展基本資訊

名稱 Simple Focus Mode Simple Focus Mode
ID dphglijjcbinhoohieelpbafdgedbgjl
官方網址 https://chromewebstore.google.com/detail/simple-focus-mode/dphglijjcbinhoohieelpbafdgedbgjl
簡介 A Chrome extension to improve productivity and reduce distractions.
檔案大小 179 KB
安裝次數 37
目前版本 0.2
更新時間 2024-01-04
上架時間 2023-04-24
評分 5.00/5 共 1 次評分
開發者 Jaroslav Pantsjoha
電子郵箱 [email protected]
付費類型 free
擴展官網 https://jaroslav-pantsjoha.medium.com/simple-focus-mode-boost-your-productivity-with-my-chrome-extension-3f5cf0f7b843
支援的語言 en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Simple Focus Mode",
    "version": "0.2",
    "description": "A Chrome extension to improve productivity and reduce distractions.",
    "permissions": [
        "storage",
        "declarativeNetRequest",
        "notifications",
        "declarativeNetRequestFeedback"
    ],
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "icons\/icon16.png"
        }
    },
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "options_page": "options.html",
    "background": {
        "service_worker": ".\/js\/background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                ".\/js\/content.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "clock_alarm.mp3"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "declarative_net_request": {
        "rule_resources": [
            {
                "id": "rules",
                "path": "rules.json",
                "enabled": true
            }
        ]
    }
}