Greasy Fork is available in English.
8/17/2023, 1:51:20 AM
当前为
// ==UserScript==
// @name YouTube: Force Single Column Mode
// @namespace UserScripts
// @match https://www.youtube.com/*
// @grant none
// @version 1.0
// @author CY Fung
// @description 8/17/2023, 1:51:20 AM
// @license MIT
// ==/UserScript==
(() => {
setInterval(() => {
let ytdWatchFlexy = document.querySelector('ytd-watch-flexy[is-two-columns_]:not([hidden])');
if (ytdWatchFlexy) {
ytdWatchFlexy.removeAttribute('is-two-columns_')
}
}, 1)
})();