Focus: A Simple Site Blocker

A Chrome Extension to help you focus.

Co to jest Focus: A Simple Site Blocker?

Focus: A Simple Site Blocker to rozszerzenie Chrome opracowane przez rypan, a jego główną funkcją jest „A Chrome Extension to help you focus.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Focus: A Simple Site Blocker

Pobierz pliki rozszerzeń Focus: A Simple Site 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

                        Focus is a simple Chrome Extension that helps you focus by blocking a list of sites that you choose.                    

Podstawowe informacje o rozszerzeniu

Nazwa Focus: A Simple Site Blocker Focus: A Simple Site Blocker
ID akghpofhgkghbnodfjfenhimdhajhpdh
Oficjalny URL https://chromewebstore.google.com/detail/focus-a-simple-site-block/akghpofhgkghbnodfjfenhimdhajhpdh
Opis A Chrome Extension to help you focus.
Rozmiar pliku 35.24 KB
Liczba instalacji 382
Aktualna Wersja 1.0.1
Ostatnia Aktualizacja 2016-09-09
Data Publikacji 2016-09-08
Ocena 3.40/5 Łącznie 10 Oceny
Deweloper rypan
Typ Płatności free
Strona Rozszerzenia https://github.com/rypan/focus
Adres URL Strony Pomocy https://github.com/rypan/focus/issues
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Focus: A Simple Site Blocker",
    "short_name": "Focus",
    "description": "A Chrome Extension to help you focus.",
    "version": "1.0.1",
    "permissions": [
        "storage",
        "webRequest",
        "webRequestBlocking",
        "*:\/\/*\/*"
    ],
    "background": {
        "persistent": true,
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_title": "Focus",
        "default_popup": "popup.html",
        "default_icon": "48.png"
    },
    "icons": {
        "16": "16.png",
        "48": "48.png",
        "128": "128.png"
    },
    "manifest_version": 2,
    "content_security_policy": "script-src 'self' https:\/\/ajax.googleapis.com; object-src 'self'"
}