Breathe: Website blocker

Calm and simple reminders to breathe, whenever you visit a distracting site.

O que é Breathe: Website blocker?

Breathe: Website blocker é uma extensão do Chrome desenvolvida por https://alejorivera.com, e sua principal característica é "Calm and simple reminders to breathe, whenever you visit a distracting site.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Breathe: Website blocker

Baixe arquivos de extensão Breathe: 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

                        Calm and simple reminders to breathe, whenever you visit a distracting site.                    

Informações Básicas da Extensão

Nome Breathe: Website blocker Breathe: Website blocker
ID ndppkiillkcmmebpbbndbmhoacfoikmj
URL Oficial https://chromewebstore.google.com/detail/breathe-website-blocker/ndppkiillkcmmebpbbndbmhoacfoikmj
Descrição Calm and simple reminders to breathe, whenever you visit a distracting site.
Tamanho do Arquivo 71.42 KB
Contagem de Instalações 80
Versão Atual 0.2
Última Atualização 2017-04-30
Data de Publicação 2017-04-30
Classificação 3.00/5 Total de 4 Avaliações
Desenvolvedor https://alejorivera.com
Tipo de Pagamento free
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Breathe: Website blocker",
    "description": "Calm and simple reminders to breathe, whenever you visit a distracting site.",
    "version": "0.2",
    "icons": {
        "128": "breathe.png"
    },
    "browser_action": {
        "default_icon": "breathe.png",
        "default_title": "Breathe",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_start"
        }
    ],
    "web_accessible_resources": [
        "breathe.html"
    ]
}