Work Interval Timer

Helps to block distracting websites during alternating periods of work and break

O que é Work Interval Timer?

Work Interval Timer é uma extensão do Chrome desenvolvida por jasonstranne, e sua principal característica é "Helps to block distracting websites during alternating periods of work and break".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Work Interval Timer

Baixe arquivos de extensão Work Interval Timer 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

                        This extension helps to promote productivity by controlling periods of work and rest. During periods of work, user-specified distracting websites are blocked while all other sites can be accessed in full. On the other hand, during periods of rest all websites are accessible. This method is very similar to the Pomodoro method and is perfect for studying.

Simply click on the icon to access these features: 
-Stop and start buttons
-Sliders to customize the length of work and rest periods
-Easy to edit list of sites to block                    

Informações Básicas da Extensão

Nome Work Interval Timer Work Interval Timer
ID ohjdmhmeknfckcobidllopadedgiiilg
URL Oficial https://chrome.google.com/webstore/detail/work-interval-timer/ohjdmhmeknfckcobidllopadedgiiilg
Descrição Helps to block distracting websites during alternating periods of work and break
Tamanho do Arquivo 55.04 KB
Contagem de Instalações 79
Versão Atual 2.1.0
Última Atualização 2019-01-09
Data de Publicação 2019-01-09
Classificação 5.00/5 Total de 1 Avaliações
Desenvolvedor jasonstranne
Tipo de Pagamento free
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Work Interval Timer",
    "description": "Helps to block distracting websites during alternating periods of work and break",
    "manifest_version": 2,
    "version": "2.1.0",
    "web_accessible_resources": [
        "images\/*.jpg"
    ],
    "author": "[email protected]",
    "permissions": [
        "management",
        "background",
        "webRequest",
        "tabs",
        "webRequestBlocking"
    ],
    "icons": {
        "16": "clockpossiblelogo.png",
        "48": "clockpossiblelogo.png",
        "128": "clockpossiblelogo.png"
    },
    "browser_action": {
        "default_title": "Work Interval Timer",
        "default_icon": "clockpossiblelogo.png",
        "default_popup": "options.html"
    },
    "background": {
        "matches": [
            "*:\/\/*\/*"
        ],
        "scripts": [
            "timer.js",
            "buttonscript.js",
            "options.html"
        ],
        "persistent": true
    }
}