Pomodoro Clock

Simple background timer for productivity

O que é Pomodoro Clock?

Pomodoro Clock é uma extensão do Chrome desenvolvida por Unknown, e sua principal característica é "Simple background timer for productivity".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Pomodoro Clock

Baixe arquivos de extensão Pomodoro Clock 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

                        Thanks to the timer, you can focus on work.

1. Select the duration of the work session and the rest session and turn on the timer
2. Take care of what you wanted to focus on
3. The timer will notify you of the start time of the sound, and then the start time of the new work session
4. Repeat the required number of sessions to achieve the result

Work and rest cycles help minimize procrastination and make better use of your time.
In a working session, you complete the task without being distracted. 
In the rest session, do what you want.
Do not forget that this is just a tool, everything is in your hands.                    

Informações Básicas da Extensão

Nome Pomodoro Clock Pomodoro Clock
ID pfbgmmjloigajfgnfmgmdbafaedpmlml
URL Oficial https://chromewebstore.google.com/detail/pomodoro-clock/pfbgmmjloigajfgnfmgmdbafaedpmlml
Descrição Simple background timer for productivity
Tamanho do Arquivo 54.19 KB
Contagem de Instalações 11
Versão Atual 1.1.0
Última Atualização 2020-06-12
Data de Publicação 2020-06-12
Classificação 5.00/5 Total de 3 Avaliações
Desenvolvedor Unknown
Tipo de Pagamento free
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Pomodoro Clock",
    "version": "1.1.0",
    "description": "Simple background timer for productivity",
    "manifest_version": 2,
    "permissions": [
        "storage"
    ],
    "browser_action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "img\/tomato16.png",
            "32": "img\/tomato32.png",
            "48": "img\/tomato48.png",
            "128": "img\/tomato128.png"
        }
    },
    "icons": {
        "16": "img\/tomato16.png",
        "32": "img\/tomato32.png",
        "48": "img\/tomato48.png",
        "128": "img\/tomato128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "options_page": "options.html"
}