YouTube Grid Column Customizer

Adjust the number of video columns on YouTube

目前為 2025-04-16 提交的版本,檢視 最新版本

  1. // ==UserScript==
  2. // @name YouTube Grid Column Customizer
  3. // @namespace https://violentmonkey.github.io/
  4. // @version 0.1
  5. // @description Adjust the number of video columns on YouTube
  6. // @author Bui Quoc Dung
  7. // @match https://www.youtube.com/*
  8. // @grant GM_addStyle
  9. // ==/UserScript==
  10. (function () {
  11. "use strict";
  12. GM_addStyle(`
  13. ytd-rich-grid-renderer {
  14. --ytd-rich-grid-items-per-row: 3 !important;
  15. }
  16. `);
  17. })();