URL Block

Block URLs

Qu'est-ce que URL Block ?

URL Block est une extension Chrome développée par Eric Yang, et sa fonction principale est "Block URLs".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension URL Block

Téléchargez les fichiers d'extension URL Block au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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]                    

Informations de Base sur l'Extension

Nom URL Block URL Block
ID fdapkdfieimlngpkffldigiajemcamlb
URL Officiel https://chromewebstore.google.com/detail/url-block/fdapkdfieimlngpkffldigiajemcamlb
Description Block URLs
Taille du Fichier 48.34 KB
Nombre d'Installations 1,756
Version Actuelle 1.2.1
Dernière Mise à Jour 2024-03-04
Date de Publication 2017-11-27
Évaluation 3.50/5 Total 8 Évaluations
Développeur Eric Yang
Email [email protected]
Type de Paiement free
Langues Prises en Charge 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"
}