YouTube Shorts Remover

Removes shorts and upcoming videos from YouTube subscriptions, so you only see videos you can watch.

ما هو YouTube Shorts Remover؟

YouTube Shorts Remover هو إضافة Chrome تم تطويرها بواسطة http://zalwicker.dev، والميزة الرئيسية لها هي "Removes shorts and upcoming videos from YouTube subscriptions, so you only see videos you can watch.".

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

screenshot
screenshot

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

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

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

                        Removes YouTube shorts so your subscription feed only shows long-form videos.

Also has the ability to remove upcoming videos, mixes, watched videos, and other annoying things on YouTube. I just want to watch regular videos, and now you can too!                    

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

الاسم YouTube Shorts Remover YouTube Shorts Remover
ID aefjgmckfgndnaopgholfhdabghaoajg
عنوان URL الرسمي https://chrome.google.com/webstore/detail/youtube-shorts-remover/aefjgmckfgndnaopgholfhdabghaoajg
الوصف Removes shorts and upcoming videos from YouTube subscriptions, so you only see videos you can watch.
حجم الملف 20.47 KB
عدد التثبيتات 865
النسخة الحالية 1.2
آخر تحديث 2023-06-11
تاريخ النشر 2022-12-06
تقييم 3.73/5 مجموع تقييمات 15
المطور http://zalwicker.dev
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://www.zalwicker.dev/projects
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "YouTube Shorts Remover",
    "version": "1.2",
    "description": "Removes shorts and upcoming videos from YouTube subscriptions, so you only see videos you can watch.",
    "icons": {
        "32": "images\/noshorts32.png",
        "48": "images\/noshorts48.png",
        "128": "images\/noshorts128.png"
    },
    "content_scripts": [
        {
            "js": [
                "scripts\/content.js"
            ],
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ]
        }
    ],
    "background": {
        "service_worker": "scripts\/background.js",
        "type": "module"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "images\/*"
            ],
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ]
        }
    ],
    "action": {
        "default_popup": "views\/settings.html"
    },
    "permissions": [
        "storage"
    ]
}