Adjust the number of video columns on YouTube
目前為
// ==UserScript==
// @name YouTube Grid Column Customizer
// @namespace https://violentmonkey.github.io/
// @version 0.1
// @description Adjust the number of video columns on YouTube
// @author Bui Quoc Dung
// @match https://www.youtube.com/*
// @grant GM_addStyle
// ==/UserScript==
(function () {
"use strict";
GM_addStyle(`
ytd-rich-grid-renderer {
--ytd-rich-grid-items-per-row: 3 !important;
}
`);
})();