Youtube Auto Expand Video Description! YT自动展开视频描述详细!
目前為
// ==UserScript==
// @name Youtube Auto Expand Video Description
// @namespace http://tampermonkey.net/
// @version 1.2
// @description Youtube Auto Expand Video Description! YT自动展开视频描述详细!
// @author Martin______X
// @match https://*.youtube.com/watch*
// @icon https://www.google.com/s2/favicons?sz=64&domain=youtube.com
// @grant none
// @license MIT
// ==/UserScript==
const desExpand = (async (expandObj)=>{
expandObj.click();
stopDesExpandInterval();
});
const desExpandInterval = setInterval(() => {
let expandObj = document.querySelector("#expand");
if(expandObj){
desExpand(expandObj);
}
}, 100);
const stopDesExpandInterval = (()=>{
clearInterval(desExpandInterval);
console.warn("stopDesExpandInterval");
});