Greasy Fork is available in English.

Youtube Frontpage Filterer

Provides a somewhat easy way to filter/remove videos on the recommended page on youtube, using their own events instead of using a mutation observer

คุณจะต้องติดตั้งส่วนขยาย เช่น Tampermonkey, Greasemonkey หรือ Violentmonkey เพื่อติดตั้งสคริปต์นี้

You will need to install an extension such as Tampermonkey to install this script.

คุณจะต้องติดตั้งส่วนขยาย เช่น Tampermonkey หรือ Violentmonkey เพื่อติดตั้งสคริปต์นี้

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

ผู้เขียน
TetteDev
จำนวนติดตั้งประจำวัน
0
จำนวนติดตั้งทั้งหมด
2
คะแนน
0 0 0
เวอร์ชัน
0.01
สร้างเมื่อ
27-10-2025
อัปเดตเมื่อ
27-10-2025
Size
5.55 กิโลไบต์
สัญญาอนุญาต
MIT
ปรับใช้กับ

Filter out videos from the youtube frontpage based on some user provided conditions. Edit the code to your liking after the comment tag saying // Edit these to your liking

Here is some examples

// Edit these to your likings
// Must be valid CSS
const HideCss = 'display: none !important;';
// Hide videos based on the uploader, case sensitive
const HiddenUploaders = ['HasanAbi', 'Hasan Piker', 'IShowSpeed', 'MrBeast', 'Kai Cenat'];
// Hide videos containing some words in their title, case insensitive
const HiddenTitleSubstrings = ['hasan','hasanabi','greta','thunberg','palestine','gaza','israel','hamas'];
// Hide videos you have watched fully
const HideWatchedVideos = false;
// Videos with less than this amount will be hidden, -1 disables this feature
const HiddenViewCountThreshhold = -1;

Perhaps a mutation observer should be used also if youtube changes its functionality etc