Site Restricter

Choose which sites to block (restrict access) in order to reduce distractions and increase focus & productivity

Cos'è Site Restricter?

Site Restricter è un'estensione di Chrome sviluppata da LN, e la sua funzione principale è "Choose which sites to block (restrict access) in order to reduce distractions and increase focus & productivity".

Screenshot dell'Estensione

screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Site Restricter

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

                        Too many distractions? Want to limit access to certain sites?
This extension helps you control that. 

Add URLs of sites you don't want to visit.
When you change your mind, just remove them from the list and regain access!

Features: 
- Control access to sites by adding or deleting them individually
- One Click Add / Clear All Functionalities
- Simple Design
- Easy to use                    

Informazioni di Base sull'Estensione

Nome Site Restricter Site Restricter
ID kbokniiapoadjhhkmnlpndgeambahghk
URL Ufficiale https://chromewebstore.google.com/detail/site-restricter/kbokniiapoadjhhkmnlpndgeambahghk
Descrizione Choose which sites to block (restrict access) in order to reduce distractions and increase focus & productivity
Dimensione del File 10.83 KB
Conteggio Installazioni 50
Versione Corrente 0.0.5
Ultimo Aggiornamento 2021-10-30
Data di Pubblicazione 2021-10-30
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore LN
Email [email protected]
Tipo di Pagamento free
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Site Restricter",
    "description": "Choose which sites to block (restrict access) in order to reduce distractions and increase focus & productivity",
    "version": "0.0.5",
    "permissions": [
        "storage",
        "activeTab"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "action": {
        "default_popup": "popup.html",
        "default_title": "Site Restricter"
    },
    "icons": {
        "16": "\/images\/logo_16.png",
        "48": "\/images\/logo_48.png",
        "128": "\/images\/logo_128.png"
    }
}