ScheduleBlock

Block websites on a schedule

Co to jest ScheduleBlock?

ScheduleBlock to rozszerzenie Chrome opracowane przez sdasda7777, a jego główną funkcją jest „Block websites on a schedule”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot

Pobierz plik CRX rozszerzenia ScheduleBlock

Pobierz pliki rozszerzeń ScheduleBlock 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

                        Allows you to block any set of websites on a schedule or based on a timer.
Allows you to block independently both opening new tabs and using old tabs (independently for each day of the week).
Allows you to block sites after amount of time is spent.
By default uses gray color scheme to save your eyes in the night.
Reliable, without spying, ads or microtransactions.
Fully open source, therefore open to both code inspections and great new ideas.
Perfect for improving your concentration when you need it.

If there are features you would like to see added, be sure to mention them in a review or on project's GitHub page.                    

Podstawowe informacje o rozszerzeniu

Nazwa ScheduleBlock ScheduleBlock
ID hkcbacbpfhlbmaifoakhifmopmgdajkn
Oficjalny URL https://chromewebstore.google.com/detail/scheduleblock/hkcbacbpfhlbmaifoakhifmopmgdajkn
Opis Block websites on a schedule
Rozmiar pliku 167 KB
Liczba instalacji 223
Aktualna Wersja 1.1.6
Ostatnia Aktualizacja 2023-05-15
Data Publikacji 2021-05-24
Ocena 5.00/5 Łącznie 5 Oceny
Deweloper sdasda7777
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/sdasda7777/ScheduleBlock
Adres URL Strony Pomocy https://github.com/sdasda7777/ScheduleBlock/issues
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "ScheduleBlock",
    "description": "Block websites on a schedule",
    "version": "1.1.6",
    "manifest_version": 3,
    "permissions": [
        "storage"
    ],
    "web_accessible_resources": [
        {
            "matches": [
                ""
            ],
            "resources": [
                "src\/Misc.js",
                "src\/Record.js",
                "src\/RecordStorage.js",
                "src\/options.js",
                "src\/content.js",
                "images\/ScheduleBlock128.png"
            ]
        }
    ],
    "background": {
        "service_worker": "src\/background_loader_mod.js",
        "type": "module"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "src\/content.js"
            ],
            "run_at": "document_start"
        }
    ],
    "incognito": "spanning",
    "icons": {
        "128": "\/images\/ScheduleBlock128.png"
    },
    "options_page": "src\/options.html"
}