32 lines
883 B
Markdown
32 lines
883 B
Markdown
---
|
|
title: Remove Youtube Shorts from Subscription and Channel Pages
|
|
date: 2022-03-16T21:17:21+01:00
|
|
slug: fuck-shorts
|
|
categories:
|
|
- misc
|
|
- software
|
|
tags:
|
|
- hacking
|
|
- english
|
|
summary: I got annoyed by youtube shorts so i wrote a uBlock filter for that.
|
|
showtoc: false
|
|
---
|
|
|
|
If you are as annoyed as I am by YouTubes shorts on your beloved content creator's pages I may have a solution for you.
|
|
|
|
Insert the following rule into your [uBlock Origin](https://github.com/gorhill/uBlock/) filter rule-set:
|
|
|
|
```
|
|
! Remove Youtube Shorts
|
|
www.youtube.com##.ytd-grid-renderer[lockup="true"]:has(ytd-thumbnail-overlay-time-status-renderer[overlay-style="SHORTS"])
|
|
```
|
|
|
|
Have fun with a much cleaner site.
|
|
|
|
Here is an example with the channel of [Colin Furze](https://www.youtube.com/c/colinfurze/videos)
|
|
|
|
Before:
|
|
![](/images/shorts_before.png)
|
|
After:
|
|
![](/images/shorts_after.png)
|