Pomodoro Chrome Extension

This simple plugin is based on The Pomodoro Technique, which is is a popular time management method.

Pomodoro Chrome Extension란 무엇입니까?

Pomodoro Chrome Extension은(는) https://bashvlas.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This simple plugin is based on The Pomodoro Technique, which is is a popular time management method."입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot

Pomodoro Chrome Extension 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Pomodoro Chrome Extension gives you a simple user-friendly timer interface to utilize the pomodoro method.
Here is how to use it:

1. Click on the browser action icon.
2. Select number of minutes for the deep work session.
3. Work for the selected number of minutes :)

The extension does not require registration, it requires minimal permissions, and does not store your data.

It's open source:
https://github.com/bashvlas/pomodoro-chrome-extension                    

확장 프로그램 기본 정보

이름 Pomodoro Chrome Extension Pomodoro Chrome Extension
ID iccjkhpkdhdhjiaocipcegfeoclioejn
공식 URL https://chromewebstore.google.com/detail/pomodoro-chrome-extension/iccjkhpkdhdhjiaocipcegfeoclioejn
설명 This simple plugin is based on The Pomodoro Technique, which is is a popular time management method.
파일 크기 74.6 KB
설치 횟수 9,411
현재 버전 1.0.0
최근 업데이트 2020-03-25
출시 날짜 2020-03-25
평점 4.83/5 총 12 개의 평점
개발자 https://bashvlas.com
이메일 [email protected]
결제 유형 free
개인정보 보호 정책 페이지 URL https://bashvlas.com/pomodoro-chrome-extension-privacy-policy
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Pomodoro Chrome Extension",
    "short_name": "Pomodoro",
    "version": "1.0.0",
    "description": "This simple plugin is based on The Pomodoro Technique, which is is a popular time management method.",
    "icons": {
        "128": "\/img\/logo_red_128.png"
    },
    "browser_action": {
        "default_icon": "\/img\/logo_red_19.png",
        "default_popup": "\/pages\/popup\/index.html"
    },
    "background": {
        "persistent": false,
        "scripts": [
            "\/js\/background.js"
        ]
    },
    "permissions": [
        "storage"
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
}