Skip to content

Instantly share code, notes, and snippets.

@DPS0340
Created October 26, 2022 05:28
Show Gist options
  • Save DPS0340/9f5453ce19b08493052f5849079fd180 to your computer and use it in GitHub Desktop.
Save DPS0340/9f5453ce19b08493052f5849079fd180 to your computer and use it in GitHub Desktop.
// ==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