Checkbox Olympics 是一个用来测试鼠标点击速度的在线网站。你只需要在最快的速度内点击屏幕上所有的勾选框就可以了,完成的速度越快越厉害。@Appinn
感谢 @Rio 同学的推荐。
Checkbox Olympics
Checkbox Olympics 看可以硬译为《勾选框奥林匹克运动会》,有两个比赛:
- 100 米
- 110 米栏
开发者在主页上也写明了这是「一个没用的网络项目」,的确没啥用。但万一新买个鼠标呢?
比赛很简单,用鼠标点击激活的勾选框就行了,它会计时,下面是 110 米栏:
青小蛙还录制了一段 100 米视频:
没事就测一下呗,咱们留言里见。
获取
原文:https://www.appinn.com/checkbox-olympics/
放大页面相当于作弊
油管留言有个7秒多的,够厉害了
可以写脚本点吗,forEach
全自动给秒了:
new MutationObserver(() => {
if (
document.querySelector(“.howTo button.readyButton:disabled”) &&
document.querySelector(“.setGo.going span.go”) &&
window
.getComputedStyle(document.querySelector(“.setGo.going span.go”), null)
.getPropertyValue(“background-color”) === “rgb(50, 205, 50)” &&
document.querySelectorAll(“input[type=’checkbox’]:enabled:not(:checked)”)
.length > 0
) {
setTimeout(() => {
document.querySelectorAll(
“input[type=’checkbox’]:enabled:not(:checked)”
)[0] &&
document
.querySelectorAll(“input[type=’checkbox’]:enabled:not(:checked)”)[0]
.click();
}, 0);
}
}).observe(document, { childList: true, subtree: true, attributes: true });