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 파일 다운로드

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

확장 프로그램 사용 설명서

                        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
공식 URL 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
            }
        ]
    }
}