Timedojo: Pomodoro App To Stay Focused

An App to block websites, Implement Pomodoro Technique And Stay Focused

Timedojo: Pomodoro App To Stay Focused란 무엇입니까?

Timedojo: Pomodoro App To Stay Focused은(는) https://timedojo.io에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "An App to block websites, Implement Pomodoro Technique And Stay Focused"입니다.

확장 프로그램 스크린샷

screenshot

Timedojo: Pomodoro App To Stay Focused 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Improve your productivity, Implement Pomodoro Technique, Stay Focused, Block Websites using our extension!

🌟Key Features 🌟

🍵Implement Pomodoro Technique:
Easy to use Extension for Implementing Pomodoro Technique. Default settings have 3 modes - Work mode, Break mode and Long break mode with aesthetic colors.

⚔️Block Websites during focus sessions:
Add websites to your blocklist easily through our extension or you can add it manually through the blocklist page. Websites will only be blocked when a pomodoro session is ongoing. Websites will be unblocked in break and long break session!

🔃Sync with google account:
Data such as blocked websites and pomodoro state are synced with your google account. They will be restored when you sign in on a different machine using the same account!

⏱️Add to blocked list from your history:
We show a list of distinct visited websites from history. Easily add them to your block list with just a single click!

🛠️Timer synced with website:
Timer is integrated with website and changes in website will reflect in the extension!

Website: https://timedojo.io                    

확장 프로그램 기본 정보

이름 Timedojo: Pomodoro App To Stay Focused Timedojo: Pomodoro App To Stay Focused
ID cennnfekpcbgoajenlkfhhgcpmjddhfh
공식 URL https://chromewebstore.google.com/detail/timedojo-pomodoro-app-to/cennnfekpcbgoajenlkfhhgcpmjddhfh
설명 An App to block websites, Implement Pomodoro Technique And Stay Focused
파일 크기 3.14 MB
설치 횟수 11
현재 버전 1.2
최근 업데이트 2022-06-20
출시 날짜 2022-05-04
개발자 https://timedojo.io
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://timedojo.io
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Timedojo: Pomodoro App To Stay Focused",
    "description": "An App to block websites, Implement Pomodoro Technique And Stay Focused",
    "version": "1.2",
    "manifest_version": 3,
    "icons": {
        "16": "logo.png",
        "32": "logo.png",
        "48": "logo.png"
    },
    "action": {
        "default_popup": "pomo-extension\/build\/index.html",
        "default_icon": "logo.png"
    },
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "tabs",
        "storage",
        "alarms",
        "history"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/timedojo.io\/*"
            ],
            "js": [
                ".\/content_script.js"
            ]
        }
    ],
    "externally_connectable": {
        "matches": [
            "*:\/\/*.timedojo.io\/*"
        ]
    },
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'"
    }
}