YouTube Recommendations Filter

Hide videos you've already watched, old videos, and mix playlists from the Recommendations feed

ما هو YouTube Recommendations Filter؟

YouTube Recommendations Filter هو إضافة Chrome تم تطويرها بواسطة Gary Chiu، والميزة الرئيسية لها هي "Hide videos you've already watched, old videos, and mix playlists from the Recommendations feed".

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

screenshot
screenshot

تحميل ملف CRX للإضافة YouTube Recommendations Filter

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

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

                        Tired of always seeing videos you've already watched in your YouTube Recommendations feed? 
Or being recommended videos from 11 years ago? 
No matter how often you click "Not interested", YouTube still keeps recommending you those videos? 
Do you never watch YouTube Mixes? 
Then this extension is for you! It will filter these videos out of your Recommendations feed, leaving you with relevant, fresh content. 

You can also configure how much of a video you need to watch, or how old a video must be, before they get filtered out. 

Does NOT affect videos in Subscriptions, Search, Explore, Library, History, etc. 

You can also open the Console (Option + CMD + J on Mac) to see the videos that were hidden.

Source: https://github.com/garygcchiu/YouTube-Recommendations-Filter                    

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

الاسم YouTube Recommendations Filter YouTube Recommendations Filter
ID pefndkngkakmmfnadcmnfnhemieaapbb
عنوان URL الرسمي https://chrome.google.com/webstore/detail/youtube-recommendations-f/pefndkngkakmmfnadcmnfnhemieaapbb
الوصف Hide videos you've already watched, old videos, and mix playlists from the Recommendations feed
حجم الملف 23.32 KB
عدد التثبيتات 87
النسخة الحالية 1.2.1
آخر تحديث 2021-11-10
تاريخ النشر 2021-10-31
تقييم 2.33/5 مجموع تقييمات 3
المطور Gary Chiu
البريد الإلكتروني [email protected]
نوع الدفع free
عنوان صفحة سياسة الخصوصية https://pastebin.com/ypV3HQNi
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "YouTube Recommendations Filter",
    "description": "Hide videos you've already watched, old videos, and mix playlists from the Recommendations feed",
    "version": "1.2.1",
    "manifest_version": 3,
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.youtube.com\/*"
            ],
            "js": [
                "content-script.js"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "storage"
    ],
    "action": {
        "default_popup": "interface.html"
    },
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    }
}