Breathe: Website blocker

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

Cos'è Breathe: Website blocker?

Breathe: Website blocker è un'estensione di Chrome sviluppata da https://alejorivera.com, e la sua funzione principale è "Calm and simple reminders to breathe, whenever you visit a distracting site.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Breathe: Website blocker

Scarica i file di estensione Breathe: Website blocker in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

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

Informazioni di Base sull'Estensione

Nome Breathe: Website blocker Breathe: Website blocker
ID ndppkiillkcmmebpbbndbmhoacfoikmj
URL Ufficiale https://chromewebstore.google.com/detail/breathe-website-blocker/ndppkiillkcmmebpbbndbmhoacfoikmj
Descrizione Calm and simple reminders to breathe, whenever you visit a distracting site.
Dimensione del File 71.42 KB
Conteggio Installazioni 80
Versione Corrente 0.2
Ultimo Aggiornamento 2017-04-30
Data di Pubblicazione 2017-04-30
Valutazione 3.00/5 Totale 4 Valutazioni
Sviluppatore https://alejorivera.com
Tipo di Pagamento free
Lingue Supportate 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"
    ]
}