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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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
URL หน้าช่วยเหลือ 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"
        ]
    }
}