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文件
下載Nucleus: A Pomodoro Timer and Website Blocker擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
“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 |
官方網址 | 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": [ "*:\/\/*\/*" ] } |