// ==UserScript==
// @name window.scrollBy
// @namespace http://tampermonkey.net/
// @version 0.1
// @description window.scrollBy(0, 475);
// @author SOTVM
// @match https://forum.academ.club/*
// @grant none
// ==/UserScript==
(function() {
'use strict';
window.scrollBy(0, 475);
// Your code here...
})();
// ==UserScript==
// @name New Userscript
// @namespace http://tampermonkey.net/
// @version 0.1
// @description autostart player!
// @author You
// @match https://www.channelnewsasia.com/news/livetv
// @grant none
// ==/UserScript==
(function() {
'use strict';
// Your code here...
setTimeout(() => { window.document.querySelector(".oo-state-screen-selectable").click(); }, 5000);
})();