Pomodoro Timer for Google Calendar
Boost focus with our tool that integrates the Pomodoro technique into your Google Calendar events.
Pomodoro Timer for Google Calendar란 무엇입니까?
Pomodoro Timer for Google Calendar은(는) FocusCommit에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Boost focus with our tool that integrates the Pomodoro technique into your Google Calendar events."입니다.
확장 프로그램 스크린샷
Pomodoro Timer for Google Calendar 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Optimize Your Schedule with Google Calendar-Integrated Pomodoro Timer Elevate your Google Calendar experience with our Pomodoro Timer extension. It's designed to blend the Pomodoro technique into your calendar events, aiding in structured and focused work sessions. Key features include: 🔗 Embedded Pomodoro Function: Integrates with Google Calendar events. 🔔 Instant Notifications: Alerts at the end of each Pomodoro session. 📊 Pomodoro History and Statistics: Track productivity and session data. 👍 User-Friendly: Easy setup and operation within your calendar. How to Use the Pomodoro Timer: 1. Navigate to calendar.google.com. 2. Click on a calendar event. 3. You will see a "Start Pomodoro" button. Click it to begin a focused work session. 4. A notification will alert you when the Pomodoro session ends, allowing for a break or to start a new session. This straightforward process ensures you can manage your time effectively without leaving your Google Calendar environment.
확장 프로그램 기본 정보
이름 | Pomodoro Timer for Google Calendar |
ID | lbajmocmhedhaaiiammglajpagbdaeeh |
공식 URL | https://chromewebstore.google.com/detail/pomodoro-timer-for-google/lbajmocmhedhaaiiammglajpagbdaeeh |
설명 | Boost focus with our tool that integrates the Pomodoro technique into your Google Calendar events. |
파일 크기 | 326 KB |
설치 횟수 | 133 |
현재 버전 | 0.0.3 |
최근 업데이트 | 2024-02-12 |
출시 날짜 | 2023-11-24 |
평점 | 5.00/5 총 4 개의 평점 |
개발자 | FocusCommit |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://focuscommit.com |
도움말 페이지 URL | https://focuscommit.com/contact |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Pomodoro Timer for Google Calendar", "version": "0.0.3", "description": "Boost focus with our tool that integrates the Pomodoro technique into your Google Calendar events.", "permissions": [ "storage", "notifications" ], "options_page": "src\/pages\/options\/index.html", "background": { "service_worker": "src\/pages\/background\/index.js", "type": "module" }, "action": { "default_popup": "src\/pages\/popup\/index.html", "default_icon": "icon-34.png" }, "icons": { "128": "icon-128.png" }, "content_scripts": [ { "matches": [ "*:\/\/calendar.google.com\/*", "*:\/\/www.google-analytics.com\/*", "*:\/\/accounts.google.com\/*" ], "js": [ "src\/pages\/content\/index.js" ], "css": [ "assets\/css\/contentStyle17077212044.chunk.css" ] } ], "web_accessible_resources": [ { "resources": [ "assets\/js\/*.js", "assets\/css\/*.css", "icon-128.png", "icon-34.png" ], "matches": [ "*:\/\/*\/*" ] } ] } |