Youtube Video Blocker

Add keywords for videos you would like to block. Any video with a title containing those keywords will not appear in your feed.

ما هو Youtube Video Blocker؟

Youtube Video Blocker هو إضافة Chrome تم تطويرها بواسطة bmoses1124، والميزة الرئيسية لها هي "Add keywords for videos you would like to block. Any video with a title containing those keywords will not appear in your feed.".

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

screenshot

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

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

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

                        An extension to block Youtube videos with undesired keywords. Enter the keywords into a settings page, and videos with those keywords in their titles will not appear.                    

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

الاسم Youtube Video Blocker Youtube Video Blocker
ID cbkaomkmifobpbdkhhiincnigngeckfc
عنوان URL الرسمي https://chrome.google.com/webstore/detail/youtube-video-blocker/cbkaomkmifobpbdkhhiincnigngeckfc
الوصف Add keywords for videos you would like to block. Any video with a title containing those keywords will not appear in your feed.
حجم الملف 6.02 KB
عدد التثبيتات 555
النسخة الحالية 0.1
آخر تحديث 2020-12-23
تاريخ النشر 2020-12-23
تقييم 1.00/5 مجموع تقييمات 3
المطور bmoses1124
البريد الإلكتروني [email protected]
نوع الدفع free
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Youtube Video Blocker",
    "version": "0.1",
    "description": "Add keywords for videos you would like to block. Any video with a title containing those keywords will not appear in your feed.",
    "browser_action": {
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.youtube.com\/*"
            ],
            "js": [
                "block_youtube_vids.js"
            ]
        }
    ],
    "permissions": [
        "storage"
    ],
    "options_page": "options.html",
    "manifest_version": 2
}