Created
January 17, 2023 13:27
-
-
Save alexcmgit/a484db1f79df2d51679a2f55c5d3c484 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name Remove YouTube Thumbnails on Mobile. | |
// @namespace http://tampermonkey.net/ | |
// @version 0.1 | |
// @description try to take over the world! | |
// @author You | |
// @match https://m.youtube.com/feed/subscriptions | |
// @icon https://www.google.com/s2/favicons?sz=64&domain=youtube.com | |
// @grant none | |
// ==/UserScript== | |
(function() { | |
'use strict'; | |
const style = ` | |
<style> | |
.cover { | |
display: none !important; | |
} | |
.media-item-thumbnail-container { | |
display: none !important; | |
} | |
</style> | |
` | |
document.head.insertAdjacentHTML('beforeend', style) | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment