Seen That! For YouTube

Hides YouTube's recommended videos if you have already watched them!

ما هو Seen That! For YouTube؟

Seen That! For YouTube هو إضافة Chrome تم تطويرها بواسطة Arun Sundaram، والميزة الرئيسية لها هي "Hides YouTube's recommended videos if you have already watched them!".

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

screenshot
screenshot
screenshot

تحميل ملف CRX للإضافة Seen That! For YouTube

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

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

                        Are you sick of seeing recommendations for YouTube videos you have already watched or started, but decided not to finish?

SeenThat! uses YouTube's watch history to hide suggestions for videos that you've already seen.

This extension REQUIRES you to be signed into YouTube and to have watch history unpaused.
You can toggle this at https://www.youtube.com/feed/history. 

You can customize hiding from the following pages with one simple menu:
- Home Page
- Watch Page
- Subscriptions
- Channel Videos
- Search Results

You can further filter the videos by only hiding videos that you've watched past a certain percentage or by hiding playlist recommendations.

SeenThat! does not collect any user data, but does need your YouTube account's watch history to be active to work. You will know that this is the case if you can see the red bar at the bottom of thumbnails linking to videos you've already started to watch.                    

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

الاسم Seen That! For YouTube Seen That! For YouTube
ID nlhibcelmcakfgbdmeinlojopoadhnfe
عنوان URL الرسمي https://chromewebstore.google.com/detail/seen-that-for-youtube/nlhibcelmcakfgbdmeinlojopoadhnfe
الوصف Hides YouTube's recommended videos if you have already watched them!
حجم الملف 40.18 KB
عدد التثبيتات 130
النسخة الحالية 1.0
آخر تحديث 2021-04-20
تاريخ النشر 2021-04-20
تقييم 3.75/5 مجموع تقييمات 4
المطور Arun Sundaram
البريد الإلكتروني [email protected]
نوع الدفع free
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Seen That! For YouTube",
    "version": "1.0",
    "description": "Hides YouTube's recommended videos if you have already watched them!",
    "permissions": [
        "activeTab",
        "declarativeContent",
        "storage"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/www.youtube.com\/*"
            ],
            "run_at": "document_end",
            "js": [
                "content.js"
            ]
        }
    ],
    "page_action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "images\/seen_that16.png",
            "32": "images\/seen_that32.png",
            "48": "images\/seen_that48.png",
            "128": "images\/seen_that128.png"
        }
    },
    "icons": {
        "16": "images\/seen_that16.png",
        "32": "images\/seen_that32.png",
        "48": "images\/seen_that48.png",
        "128": "images\/seen_that128.png"
    },
    "manifest_version": 2
}