URL Block

Block URLs

ما هو URL Block؟

URL Block هو إضافة Chrome تم تطويرها بواسطة Eric Yang، والميزة الرئيسية لها هي "Block URLs".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة URL Block

قم بتنزيل ملفات الامتداد URL Block بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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]                    

معلومات أساسية عن التمديد

الاسم URL Block URL Block
ID fdapkdfieimlngpkffldigiajemcamlb
عنوان URL الرسمي https://chromewebstore.google.com/detail/url-block/fdapkdfieimlngpkffldigiajemcamlb
الوصف Block URLs
حجم الملف 48.34 KB
عدد التثبيتات 1,756
النسخة الحالية 1.2.1
آخر تحديث 2024-03-04
تاريخ النشر 2017-11-27
تقييم 3.50/5 مجموع تقييمات 8
المطور Eric Yang
البريد الإلكتروني [email protected]
نوع الدفع free
اللغات المدعومة 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"
}