Channel Blocker

Block irrelevant channels from the home page of youtube.

ما هو Channel Blocker؟

Channel Blocker هو إضافة Chrome تم تطويرها بواسطة xanderjakeq، والميزة الرئيسية لها هي "Block irrelevant channels from the home page of youtube.".

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

screenshot

تحميل ملف CRX للإضافة Channel Blocker

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

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

                        Stay productive while on Youtube by blocking distracting or irrelevant content from specific channels out of your homepage. You can't click on them if can't see them.                    

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

الاسم Channel Blocker Channel Blocker
ID bdcfpamdaoifippnlppibiejaagbihon
عنوان URL الرسمي https://chromewebstore.google.com/detail/channel-blocker/bdcfpamdaoifippnlppibiejaagbihon
الوصف Block irrelevant channels from the home page of youtube.
حجم الملف 10.86 KB
عدد التثبيتات 1,636
النسخة الحالية 1.1.1
آخر تحديث 2022-06-21
تاريخ النشر 2019-09-04
تقييم 1.80/5 مجموع تقييمات 5
المطور xanderjakeq
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://github.com/thelostcreatives/youtube_channel_blocker
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Channel Blocker",
    "author": "1o1.wtf [https:\/\/github.com\/thelostcreatives]",
    "description": "Block irrelevant channels from the home page of youtube.",
    "version": "1.1.1",
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "48": "\/icon.png"
        }
    },
    "permissions": [
        "notifications",
        "storage",
        "activeTab"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.youtube.com\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_start"
        }
    ],
    "background": {
        "service_worker": "background.js"
    }
}