Recommendation Tweaker for YouTube

Take the trash out! Get rid of the garbage recommendations with this highly customizable extension!

ما هو Recommendation Tweaker for YouTube؟

Recommendation Tweaker for YouTube هو إضافة Chrome تم تطويرها بواسطة https://benedani.xyz، والميزة الرئيسية لها هي "Take the trash out! Get rid of the garbage recommendations with this highly customizable extension!".

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

screenshot

تحميل ملف CRX للإضافة Recommendation Tweaker for YouTube

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

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

                        An open source, purely client-side browser extension that gives you control over YouTube's feed! Get rid of videos you've already seen, useless mixes and everything else you don't like!

v2.1 notes:
Fixed a bug where an invisible "video" that didn't even exist would cause the extension to error internally. It makes perfect sense, don't question it.                    

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

الاسم Recommendation Tweaker for YouTube Recommendation Tweaker for YouTube
ID jmcdldlbcgjfppbblagddgjbnjajmgec
عنوان URL الرسمي https://chromewebstore.google.com/detail/recommendation-tweaker-fo/jmcdldlbcgjfppbblagddgjbnjajmgec
الوصف Take the trash out! Get rid of the garbage recommendations with this highly customizable extension!
حجم الملف 80.81 KB
عدد التثبيتات 269
النسخة الحالية 2.1
آخر تحديث 2023-09-26
تاريخ النشر 2021-04-30
تقييم 3.33/5 مجموع تقييمات 9
المطور https://benedani.xyz
البريد الإلكتروني [email protected]
نوع الدفع free
عنوان صفحة المساعدة https://discord.gg/Zf2k7KK
اللغات المدعومة en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Recommendation Tweaker for YouTube",
    "version": "2.1",
    "description": "Take the trash out! Get rid of the garbage recommendations with this highly customizable extension!",
    "author": "Benedani - https:\/\/benedani.xyz\/",
    "permissions": [
        "storage"
    ],
    "icons": {
        "32": "icons\/32.png",
        "64": "icons\/64.png",
        "96": "icons\/96.png",
        "192": "icons\/192.png",
        "384": "icons\/384.png"
    },
    "browser_action": {
        "default_icon": {
            "32": "icons\/32.png",
            "64": "icons\/64.png",
            "96": "icons\/96.png",
            "192": "icons\/192.png",
            "384": "icons\/384.png"
        },
        "default_title": "Recommendation Tweaker for YouTube",
        "default_popup": "settings\/a.html"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "js": [
                "runtweak.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "storage.js"
        ]
    }
}