返回首頁 

Greasy Fork is available in English.

YT-LargerGrid

Makes the YT-Feed larger

ของเมื่อวันที่ 30-08-2019 ดู เวอร์ชันล่าสุด

// ==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');});})();