Breathe: Website blocker

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

Co to jest Breathe: Website blocker?

Breathe: Website blocker to rozszerzenie Chrome opracowane przez https://alejorivera.com, a jego główną funkcją jest „Calm and simple reminders to breathe, whenever you visit a distracting site.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Breathe: Website blocker

Pobierz pliki rozszerzeń Breathe: Website blocker w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

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

Podstawowe informacje o rozszerzeniu

Nazwa Breathe: Website blocker Breathe: Website blocker
ID ndppkiillkcmmebpbbndbmhoacfoikmj
Oficjalny URL https://chromewebstore.google.com/detail/breathe-website-blocker/ndppkiillkcmmebpbbndbmhoacfoikmj
Opis Calm and simple reminders to breathe, whenever you visit a distracting site.
Rozmiar pliku 71.42 KB
Liczba instalacji 80
Aktualna Wersja 0.2
Ostatnia Aktualizacja 2017-04-30
Data Publikacji 2017-04-30
Ocena 3.00/5 Łącznie 4 Oceny
Deweloper https://alejorivera.com
Typ Płatności free
Obsługiwane Języki 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"
    ]
}