ScheduleBlock

Block websites on a schedule

Cos'è ScheduleBlock?

ScheduleBlock è un'estensione di Chrome sviluppata da sdasda7777, e la sua funzione principale è "Block websites on a schedule".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione ScheduleBlock

Scarica i file di estensione ScheduleBlock 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

                        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.                    

Informazioni di Base sull'Estensione

Nome ScheduleBlock ScheduleBlock
ID hkcbacbpfhlbmaifoakhifmopmgdajkn
URL Ufficiale https://chromewebstore.google.com/detail/scheduleblock/hkcbacbpfhlbmaifoakhifmopmgdajkn
Descrizione Block websites on a schedule
Dimensione del File 167 KB
Conteggio Installazioni 223
Versione Corrente 1.1.6
Ultimo Aggiornamento 2023-05-15
Data di Pubblicazione 2021-05-24
Valutazione 5.00/5 Totale 5 Valutazioni
Sviluppatore sdasda7777
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/sdasda7777/ScheduleBlock
URL della Pagina di Aiuto https://github.com/sdasda7777/ScheduleBlock/issues
Lingue Supportate 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"
}