diff --git a/content/posts/2022-03-16-shorts.md b/content/posts/2022-03-16-shorts.md new file mode 100644 index 0000000..52c3e26 --- /dev/null +++ b/content/posts/2022-03-16-shorts.md @@ -0,0 +1,31 @@ +--- +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) diff --git a/static/images/shorts_after.png b/static/images/shorts_after.png new file mode 100644 index 0000000..d6ad6d7 Binary files /dev/null and b/static/images/shorts_after.png differ diff --git a/static/images/shorts_before.png b/static/images/shorts_before.png new file mode 100644 index 0000000..4d94228 Binary files /dev/null and b/static/images/shorts_before.png differ