Skip to content

Instantly share code, notes, and snippets.

@alexrintt
Created January 17, 2023 13:27
Show Gist options
  • Save alexrintt/a484db1f79df2d51679a2f55c5d3c484 to your computer and use it in GitHub Desktop.
Save alexrintt/a484db1f79df2d51679a2f55c5d3c484 to your computer and use it in GitHub Desktop.
// ==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