Skip to content

Instantly share code, notes, and snippets.

View BeautifulTommorow's full-sized avatar

SoulTree BeautifulTommorow

View GitHub Profile
@BeautifulTommorow
BeautifulTommorow / safepasslib.js
Created March 20, 2018 05:32 — forked from kde713/safepass.js
안전교육 이수 스크립트
var page_no = getCurrentPageNumber();
var macro_flag = false;
function wait(msecs) {
var start = new Date().getTime();
var cur = start;
while (cur - start < msecs) {
cur = new Date().getTime();
}
}