Created
October 26, 2022 05:28
-
-
Save DPS0340/9f5453ce19b08493052f5849079fd180 to your computer and use it in GitHub Desktop.
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
// ==UserScript== | |
// @name Inflearn Student | |
// @namespace https://www.inflearn.com | |
// @version 0.1 | |
// @description Study Hard | |
// @author mirusu400 | |
// @match https://www.inflearn.com/course/*/unit/* | |
// @icon https://www.google.com/s2/favicons?sz=64&domain=inflearn.com | |
// @grant none | |
// ==/UserScript== | |
(function() { | |
'use strict'; | |
async function timeSensativeAction(){ | |
document.getElementsByClassName("css-u3b0qh")[1].click(); | |
document.getElementsByClassName("css-u3b0qh")[2].click(); | |
} | |
setInterval(timeSensativeAction,500); | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment