YouTube Blocker

Block unwanted YouTube channels.

ما هو YouTube Blocker؟

YouTube Blocker هو إضافة Chrome تم تطويرها بواسطة Przemysław Tyczyński، والميزة الرئيسية لها هي "Block unwanted YouTube channels.".

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

screenshot
screenshot
screenshot

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

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

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

                        YouTube Blocker is an extension that aims to make your life easier, and by all means less stressful. 
We know that the YouTube feed can be troublesome sometimes, to say the least. 
For that reason, we put forward a much needed solution to aforementioned problem.

Hide unwanted content now.                    

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

الاسم YouTube Blocker YouTube Blocker
ID okgepglpkhgfhjonfceifgibiobjnodg
عنوان URL الرسمي https://chrome.google.com/webstore/detail/youtube-blocker/okgepglpkhgfhjonfceifgibiobjnodg
الوصف Block unwanted YouTube channels.
حجم الملف 96.3 KB
عدد التثبيتات 1,036
النسخة الحالية 1.0.0
آخر تحديث 2020-04-21
تاريخ النشر 2020-04-21
تقييم 5.00/5 مجموع تقييمات 5
المطور Przemysław Tyczyński
نوع الدفع free
موقع الإضافة https://youtube-blocker.tyczynski.dev
عنوان صفحة المساعدة https://youtube-blocker.tyczynski.dev
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "YouTube Blocker",
    "description": "Block unwanted YouTube channels.",
    "version": "1.0.0",
    "browser_action": {
        "default_title": "YouTube Blocker",
        "default_popup": "popup.html",
        "default_icon": {
            "16": ".\/icons\/icon-16.png",
            "48": ".\/icons\/icon-48.png",
            "128": ".\/icons\/icon-128.png"
        }
    },
    "icons": {
        "16": ".\/icons\/icon-16.png",
        "48": ".\/icons\/icon-48.png",
        "128": ".\/icons\/icon-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "js": [
                "js\/content.js"
            ]
        }
    ],
    "options_ui": {
        "page": "options.html",
        "browser_style": true,
        "chrome_style": true
    },
    "permissions": [
        "storage"
    ]
}