Skip to content

Instantly share code, notes, and snippets.

View Lay4U's full-sized avatar

HyeongRae Kim Lay4U

  • pluxity
  • Seocho
  • 22:24 (UTC +09:00)
View GitHub Profile
@Lay4U
Lay4U / safepasslib.js
Created December 4, 2018 15:03 — 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();
}
}