This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
1. Open your latest video and paste this entire script into the console. | |
2. Wait until all the videos will be hidden one by one. | |
*/ | |
function triggerHoverEvent(element) { | |
const hoverEvent = new MouseEvent("mouseover", { | |
bubbles: true, | |
cancelable: true, | |
view: window |