您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Show 6 video in row on YouTube
当前为
// ==UserScript== // @name YouTube in compact // @namespace http://tampermonkey.net/ // @version 0.3.2 // @description Show 6 video in row on YouTube // @author Alex.nfo // @match *://www.youtube.com/* // @exclude *://www.youtube.com/watch?v=* // @grant none // ==/UserScript== (function() { 'use strict'; //Show 6 contents per row(you could change by setting the value in --ytd-rich-grid-items-per-row:*6*) document.getElementsByTagName("ytd-rich-grid-renderer")[0].style = "--ytd-rich-grid-items-per-row:6; --ytd-rich-grid-posts-per-row:3; --ytd-rich-grid-movies-per-row:7"; //Make font size to 8px(you could change by setting the value in font-size: *9px*) document.getElementsByTagName("html")[0].style = "font-size: 9px;font-family: Roboto, Arial, sans-serif; "; })();