Youtube Hider

This is a Chrome extension to hide videos and images on YouTube.

ما هو Youtube Hider؟

Youtube Hider هو إضافة Chrome تم تطويرها بواسطة Miri Ahn، والميزة الرئيسية لها هي "This is a Chrome extension to hide videos and images on YouTube.".

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

screenshot
screenshot
screenshot

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

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

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

                        You can toggle a visibility of a group of Youtube elements on the list below, respectively:
- Video
- Video thumbnail
- User profile photo

Update 1.1 (2019/11/25) 
- Added a button to enable or disable all checkboxes.                    

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

الاسم Youtube Hider Youtube Hider
ID cnaimccmiafebfliaiefkdfmdffgmjph
عنوان URL الرسمي https://chrome.google.com/webstore/detail/youtube-hider/cnaimccmiafebfliaiefkdfmdffgmjph
الوصف This is a Chrome extension to hide videos and images on YouTube.
حجم الملف 8.85 KB
عدد التثبيتات 60
النسخة الحالية 1.1
آخر تحديث 2019-11-29
تاريخ النشر 2019-11-29
تقييم 4.25/5 مجموع تقييمات 4
المطور Miri Ahn
البريد الإلكتروني [email protected]
نوع الدفع free
عنوان صفحة المساعدة https://github.com/kameru/youtube-hider/issues
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Youtube Hider",
    "version": "1.1",
    "description": "This is a Chrome extension to hide videos and images on YouTube.",
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "js": [
                "hidingController.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "hide_thumb.css",
        "hide_video.css",
        "hide_icon.css",
        "popup.js",
        "hidingController.js"
    ],
    "permissions": [
        "activeTab",
        "storage",
        "declarativeContent"
    ],
    "page_action": {
        "default_icon": "images\/hide.png",
        "default_popup": "popup.html"
    },
    "manifest_version": 2
}