您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Provided that the automatic playback is disabled for Steam discussions, you will see a bigger preview image and the video title.
// ==UserScript== // @name Automatically click on all Youtube thumbnails in Steam discussions // @author pizzahut // @description Provided that the automatic playback is disabled for Steam discussions, you will see a bigger preview image and the video title. // @license MIT // @match https://steamcommunity.com/*/discussions/* // @namespace https://greasyfork.org/users/1117297-pizzahut // @grant none // @version 7 // ==/UserScript== function clickAll() { document.querySelectorAll(".dynamiclink_box").forEach(bt => bt.click()); } clickAll(); const myTimeout = setInterval(clickAll, 1000);