Greasy Fork is available in English.
Makes the YT-Feed larger
ของเมื่อวันที่
// ==UserScript==// @name YT-LargerGrid// @namespace http://tampermonkey.net/// @version 0.1// @description Makes the YT-Feed larger// @author SirMorokei// @match https://www.youtube.com/feed/subscriptions// @grant none// ==/UserScript==(function() {'use strict';var divs =document.getElementsByClassName("grid-6-columns");divs=Array.from(divs);divs.forEach(function(div){div.classList.remove('grid-6-columns');});})();