упрощает работу на кране
当前为
// ==UserScript==
// @name Новый ClaimLitoshi Auto-Claim полуавтомат
// @namespace http://tampermonkey.net/
// @version 2025-08-08
// @description упрощает работу на кране
// @author Danik Odze
// @match https://claimlitoshi.top/faucet/*
// @match https://claimlitoshi.top/firewall
// @require https://code.jquery.com/jquery-3.6.0.min.js
// @icon https://www.google.com/s2/favicons?sz=64&domain=claimlitoshi.top
// @grant none
// @license MIT
// ==/UserScript==
(function() {
'use strict';
window.addEventListener('load', function() {
const interval = setInterval(() => {
if(document.querySelector("body > div.loader")){
document.querySelector("body > div.loader").remove();
clearInterval(interval);
}
}, 1000);
});
setTimeout(() => {// задержка нажатия кнопки
if(document.querySelectorAll('div[style^="position:"]')[1])document.querySelectorAll('div[style^="position:"]')[1].remove()
if(document.querySelectorAll('div[style^="position:"]')[1])document.querySelectorAll('div[style^="position:"]')[1].remove()
window.scroll(0, document.body.scrollHeight); //page down
if(document.getElementById("captcha_check")) {
document.getElementById("captcha_check").click();
// $("div.captcha-show").scrollIntoView();
}
$("div.captcha-show").on("click", function(event) {
var x = event.pageX - this.offsetLeft;
var y = event.pageY - this.offsetTop;
console.log("X Coordinate: " + x + " Y Coordinate: " + y);
if(!document.querySelector('button[type="submit"]').disabled){
document.querySelector('button[type="submit"]').click();
}
});
}, 3000);
})();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址