Nucleus: A Pomodoro Timer and Website Blocker
Provides a Pomodoro for focused time management and the ability to block websites to help prevent distractions while you work.
Nucleus: A Pomodoro Timer and Website Blocker란 무엇입니까?
Nucleus: A Pomodoro Timer and Website Blocker은(는) shilopron에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Provides a Pomodoro for focused time management and the ability to block websites to help prevent distractions while you work."입니다.
확장 프로그램 스크린샷
Nucleus: A Pomodoro Timer and Website Blocker 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
“All of my power is focused on my task; there are no distractions.” Concentrating your mind and getting into a period of deep focus will make the effort and time that go into your tasks more effective. It will allow you to 'get in the zone', freeing your mind of distractions until your entire body, mind and soul become engrossed into the work. Nucleus provides a simple, but effective UI to manage these periods of focus and relaxation. Nucleus is based on the Pomodoro technique for time management. When faced with any large task or series of tasks, break the work down into short, timed intervals (called 'Pomodoros') that are spaced out by short breaks. This allows you to immerse your mind, and get good work done. Nucleus also includes the ability to block distracting websites so you can stay focused on your work. Find you center.
확장 프로그램 기본 정보
이름 | Nucleus: A Pomodoro Timer and Website Blocker |
ID | koebbleaefghpjjmghelhjboilcmfpad |
공식 URL | https://chromewebstore.google.com/detail/nucleus-a-pomodoro-timer/koebbleaefghpjjmghelhjboilcmfpad |
설명 | Provides a Pomodoro for focused time management and the ability to block websites to help prevent distractions while you work. |
파일 크기 | 2.11 MB |
설치 횟수 | 10,000 |
현재 버전 | 2024.01.25 |
최근 업데이트 | 2024-02-28 |
출시 날짜 | 2019-03-08 |
평점 | 4.17/5 총 96 개의 평점 |
개발자 | shilopron |
이메일 | [email protected] |
결제 유형 | free |
개인정보 보호 정책 페이지 URL | https://best-products-static.s3.amazonaws.com/privacy/Nucleus+Privacy+policy.pdf |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Nucleus: A Pomodoro Timer and Website Blocker", "description": "Provides a Pomodoro for focused time management and the ability to block websites to help prevent distractions while you work.", "version": "2024.01.25", "action": { "default_icon": ".\/ico\/128clock.png", "default_title": "Nucleus", "default_popup": "index.html" }, "background": { "service_worker": "background.js" }, "icons": { "128": ".\/ico\/128clock.png" }, "permissions": [ "declarativeNetRequest", "activeTab", "background", "notifications", "storage", "offscreen" ], "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "exclude_matches": [ "*:\/\/*\/*.json", "*:\/\/*\/*.pdf", "*:\/\/*\/*.jpeg", "*:\/\/*\/*.jpg", "*:\/\/*\/*.png", "*:\/\/*\/*.svg" ], "js": [ "content.js" ] } ], "host_permissions": [ "*:\/\/*\/*" ] } |