Automatically click on all Youtube thumbnails in Steam discussions

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);