Disable YouTube Cards

Disable end cards that show during the last 5-20 seconds of a video.

ما هو Disable YouTube Cards؟

Disable YouTube Cards هو إضافة Chrome تم تطويرها بواسطة Techniat، والميزة الرئيسية لها هي "Disable end cards that show during the last 5-20 seconds of a video.".

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

screenshot
screenshot

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

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

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

                        Block all cards that blocking some content!

Also you can Block:

✓ End Cards are a part of the video that show during the last 5-20 seconds of a video.

✓ Cards a small rectangular box, or teaser, appear in the top right corner of the video.

✓ Channel Icon is a part of the video that show during the start of a video.                    

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

الاسم Disable YouTube Cards Disable YouTube Cards
ID cabbicmkgndkkhcfpelkfdahnfgefefn
عنوان URL الرسمي https://chrome.google.com/webstore/detail/disable-youtube-cards/cabbicmkgndkkhcfpelkfdahnfgefefn
الوصف Disable end cards that show during the last 5-20 seconds of a video.
حجم الملف 35.58 KB
عدد التثبيتات 1,000
النسخة الحالية 1.0
آخر تحديث 2017-12-14
تاريخ النشر 2017-12-14
تقييم 5.00/5 مجموع تقييمات 16
المطور Techniat
البريد الإلكتروني [email protected]
نوع الدفع free
اللغات المدعومة en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Disable YouTube Cards",
    "description": "Disable end cards that show during the last 5-20 seconds of a video.",
    "version": "1.0",
    "permissions": [
        "tabs",
        "https:\/\/www.youtube.com\/*",
        "contextMenus",
        "storage"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "options_page": "options\/options.html",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "js": [
                "content\/content.js"
            ],
            "run_at": "document_start"
        }
    ],
    "icons": {
        "16": "images\/icon16.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    },
    "browser_action": {
        "default_icon": "images\/icon19.png",
        "default_popup": "browser_action\/popup.html"
    },
    "manifest_version": 2
}