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.

O que é Nucleus: A Pomodoro Timer and Website Blocker?

Nucleus: A Pomodoro Timer and Website Blocker é uma extensão do Chrome desenvolvida por shilopron, e sua principal característica é "Provides a Pomodoro for focused time management and the ability to block websites to help prevent distractions while you work.".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot
screenshot
screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Nucleus: A Pomodoro Timer and Website Blocker

Baixe arquivos de extensão Nucleus: A Pomodoro Timer and Website Blocker no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        “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.                    

Informações Básicas da Extensão

Nome Nucleus: A Pomodoro Timer and Website Blocker Nucleus: A Pomodoro Timer and Website Blocker
ID koebbleaefghpjjmghelhjboilcmfpad
URL Oficial https://chromewebstore.google.com/detail/nucleus-a-pomodoro-timer/koebbleaefghpjjmghelhjboilcmfpad
Descrição Provides a Pomodoro for focused time management and the ability to block websites to help prevent distractions while you work.
Tamanho do Arquivo 2.11 MB
Contagem de Instalações 10,000
Versão Atual 2024.01.25
Última Atualização 2024-02-28
Data de Publicação 2019-03-08
Classificação 4.17/5 Total de 96 Avaliações
Desenvolvedor shilopron
Email [email protected]
Tipo de Pagamento free
URL da Página de Política de Privacidade https://best-products-static.s3.amazonaws.com/privacy/Nucleus+Privacy+policy.pdf
Idiomas Suportados 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": [
        "*:\/\/*\/*"
    ]
}