URL Block

Block URLs

Hvad er URL Block?

URL Block er en Chrome-udvidelse udviklet af Eric Yang, og dens hovedfunktion er "Block URLs".

Udvidelsesskærmbilleder

screenshot

Download URL Block-udvidelses-CRX-fil

Download URL Block-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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]                    

Grundlæggende oplysninger om udvidelsen

Navn URL Block URL Block
ID fdapkdfieimlngpkffldigiajemcamlb
Officiel URL https://chromewebstore.google.com/detail/url-block/fdapkdfieimlngpkffldigiajemcamlb
Beskrivelse Block URLs
Filstørrelse 48.34 KB
Antal Installationer 1,756
Nuværende Version 1.2.1
Senest Opdateret 2024-03-04
Udgivelsesdato 2017-11-27
Bedømmelse 3.50/5 Samlet 8 Bedømmelser
Udvikler Eric Yang
E-mail [email protected]
Betalingsmetode free
Understøttede Sprog 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"
}