Blacklist

Blacklist is a very simple website blocker designed for personal use.

ما هو Blacklist؟

Blacklist هو إضافة Chrome تم تطويرها بواسطة http://rahulgi.com، والميزة الرئيسية لها هي "Blacklist is a very simple website blocker designed for personal use.".

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

screenshot
screenshot
screenshot

تحميل ملف CRX للإضافة Blacklist

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

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

                        This is a very simple extension for Google Chrome. When you find yourself on a website that is taking too much of your time, simply hit the Blacklist button in the upper right corner of Chrome and you will be blocked from visiting that site while Blacklist remains active. To resume visiting any site blocked by Blacklist, you must visit the site, click the Blacklist extension button in the upper right corner of the browser, and then click the "unlist" button. You will be forced to wait for 15 seconds before the site is unlisted and you are redirected to the root URL.                    

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

الاسم Blacklist Blacklist
ID jbpccandodannohfaoncogijbkfcmpgo
عنوان URL الرسمي https://chrome.google.com/webstore/detail/blacklist/jbpccandodannohfaoncogijbkfcmpgo
الوصف Blacklist is a very simple website blocker designed for personal use.
حجم الملف 575 KB
عدد التثبيتات 34,267
النسخة الحالية 0.93
آخر تحديث 2019-12-09
تاريخ النشر 2019-12-09
تقييم 3.71/5 مجموع تقييمات 104
المطور http://rahulgi.com
نوع الدفع free
موقع الإضافة https://rahulgi.com/blacklist
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Blacklist",
    "version": "0.93",
    "manifest_version": 2,
    "description": "Blacklist is a very simple website blocker designed for personal use.",
    "icons": {
        "16": "icon.16.png",
        "48": "icon.48.png",
        "128": "icon.128.png"
    },
    "homepage_url": "http:\/\/rahulgi.github.com\/Blacklist",
    "browser_action": {
        "default_icon": "icon.48.png",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "js\/background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "js\/contentScript.js"
            ],
            "run_at": "document_start"
        }
    ],
    "web_accessible_resources": [
        "blockedSite.html"
    ],
    "permissions": [
        "*:\/\/*\/*",
        "tabs",
        "storage",
        "webRequest",
        "webRequestBlocking",
        "webNavigation"
    ],
    "incognito": "split"
}