apk.tw autologin
// ==UserScript==
// @name apk.tw autologin
// @namespace http://tampermonkey.net/
// @version 01
// @description try login if button is there, otherwise change bkground color
// @author Tim
// @match *://apk.tw/*
// @icon data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==
// @grant none
// ==/UserScript==
let ele = document.querySelector('#toptb > div:nth-child(1) > div:nth-child(1) > a:nth-child(2)');
ele.textContent = new Date().toLocaleTimeString();
function apkClick() {
let element = document.getElementById('my_amupper');
if (element !== null) {
document.getElementById("my_amupper").click();
document.body.style.background = "#ffffff";
} else
{
document.body.style.background = "#" + Math.floor(Math.random() * 0x1000000).toString(16);
}
}
apkClick();