URL Block

Block URLs

Cos'è URL Block?

URL Block è un'estensione di Chrome sviluppata da Eric Yang, e la sua funzione principale è "Block URLs".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione URL Block

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

                        Block URLs you don't want to open.

For example, you can't stop to open some webs like "facebook.com", "twitter.com" while you are working. You want to concentrate on work, but those webs are really so interesting. "URL Block" is a really good choice for you.

I have the same trouble, so I create this extension. Hope it is good for you too. 

Plz let me know if you have some trouble or advice.

My email: [email protected]                    

Informazioni di Base sull'Estensione

Nome URL Block URL Block
ID fdapkdfieimlngpkffldigiajemcamlb
URL Ufficiale https://chromewebstore.google.com/detail/url-block/fdapkdfieimlngpkffldigiajemcamlb
Descrizione Block URLs
Dimensione del File 48.34 KB
Conteggio Installazioni 1,756
Versione Corrente 1.2.1
Ultimo Aggiornamento 2024-03-04
Data di Pubblicazione 2017-11-27
Valutazione 3.50/5 Totale 8 Valutazioni
Sviluppatore Eric Yang
Email [email protected]
Tipo di Pagamento free
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "__MSG_appName__",
    "description": "__MSG_appDescription__",
    "version": "1.2.1",
    "manifest_version": 3,
    "permissions": [
        "tabs",
        "storage"
    ],
    "background": {
        "service_worker": "js\/service_worker.js",
        "type": "module"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/urlBlock.js",
                "js\/general.js"
            ]
        }
    ],
    "icons": {
        "16": "image\/icon16.png",
        "48": "image\/icon48.png",
        "128": "image\/icon128.png"
    },
    "action": {
        "default_icon": "image\/icon48.png",
        "default_title": "URL Block",
        "default_popup": "html\/popup.html"
    },
    "options_page": "html\/options.html",
    "default_locale": "en"
}