Breathe: Website blocker

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

¿Qué es Breathe: Website blocker?

Breathe: Website blocker es una extensión de Chrome desarrollada por https://alejorivera.com, y su función principal es "Calm and simple reminders to breathe, whenever you visit a distracting site.".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión Breathe: Website blocker

Descarga archivos de extensión Breathe: Website blocker en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

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

Información Básica de la Extensión

Nombre Breathe: Website blocker Breathe: Website blocker
ID ndppkiillkcmmebpbbndbmhoacfoikmj
URL Oficial https://chromewebstore.google.com/detail/breathe-website-blocker/ndppkiillkcmmebpbbndbmhoacfoikmj
Descripción Calm and simple reminders to breathe, whenever you visit a distracting site.
Tamaño del Archivo 71.42 KB
Cantidad de Instalaciones 80
Versión Actual 0.2
Última Actualización 2017-04-30
Fecha de Publicación 2017-04-30
Calificación 3.00/5 Total de 4 Calificaciones
Desarrollador https://alejorivera.com
Tipo de Pago free
Idiomas Soportados 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"
    ]
}