YouTube Rabbit Hole Sealant

Stop falling into YouTube rabbit holes! Hides YouTube's 'suggested videos' sidebar and the comment section.

ما هو YouTube Rabbit Hole Sealant؟

YouTube Rabbit Hole Sealant هو إضافة Chrome تم تطويرها بواسطة ezeYaniv، والميزة الرئيسية لها هي "Stop falling into YouTube rabbit holes! Hides YouTube's 'suggested videos' sidebar and the comment section.".

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

screenshot

تحميل ملف CRX للإضافة YouTube Rabbit Hole Sealant

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

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

                        This Chrome extension hides some of YouTube's most attention-grabbing, time-wasting components: the 'suggested videos' sidebar and the comment section.

Clicking the extension icon allows you to quickly toggle the following options:
  •  Show or hide the 'suggested videos' sidebar
  •  Show or hide the comment section                    

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

الاسم YouTube Rabbit Hole Sealant YouTube Rabbit Hole Sealant
ID pljkdepedlaeibebpmkckpefajpjkcak
عنوان URL الرسمي https://chromewebstore.google.com/detail/youtube-rabbit-hole-seala/pljkdepedlaeibebpmkckpefajpjkcak
الوصف Stop falling into YouTube rabbit holes! Hides YouTube's 'suggested videos' sidebar and the comment section.
حجم الملف 27.64 KB
عدد التثبيتات 87
النسخة الحالية 1.0
آخر تحديث 2021-08-21
تاريخ النشر 2021-08-21
تقييم 5.00/5 مجموع تقييمات 1
المطور ezeYaniv
البريد الإلكتروني [email protected]
نوع الدفع free
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "YouTube Rabbit Hole Sealant",
    "description": "Stop falling into YouTube rabbit holes! Hides YouTube's 'suggested videos' sidebar and the comment section.",
    "version": "1.0",
    "manifest_version": 3,
    "icons": {
        "16": "assets\/images\/RabbitHoleSealantLogo_Rect_16.png",
        "24": "assets\/images\/RabbitHoleSealantLogo_Rect_24.png",
        "32": "assets\/images\/RabbitHoleSealantLogo_Rect_32.png",
        "48": "assets\/images\/RabbitHoleSealantLogo_Rect_48.png",
        "128": "assets\/images\/RabbitHoleSealantLogo_Rect_128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "js": [
                "assets\/js\/hideComponents.js"
            ]
        }
    ],
    "action": {
        "default_title": "Rabbit Hole Sealant: make YouTube less addicting",
        "default_icon": {
            "16": "assets\/images\/RabbitHoleSealantLogo_Rect_16.png",
            "24": "assets\/images\/RabbitHoleSealantLogo_Rect_24.png",
            "32": "assets\/images\/RabbitHoleSealantLogo_Rect_32.png",
            "48": "assets\/images\/RabbitHoleSealantLogo_Rect_48.png",
            "128": "assets\/images\/RabbitHoleSealantLogo_Rect_128.png"
        },
        "default_popup": "assets\/popup\/popup.html"
    },
    "permissions": [
        "storage"
    ]
}