您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Greasy Fork is available in English.
京东到家的仙豆庄园,每天自动收水,浇水。 F12调试模式手机模式: https://daojia.jd.com/
// ==UserScript== // @name 京东到家-仙豆庄园 // @namespace http://greasyfork.icu/zh-CN/scripts/400137 // @match https://daojia.jd.com/taroh5/h5dist/* // @grant none // @version 1.5 // @author Lucas([email protected]) // @update Lucas([email protected]) // @description 京东到家的仙豆庄园,每天自动收水,浇水。 F12调试模式手机模式: https://daojia.jd.com/ // ==/UserScript== (function() { setTimeout(function(){ reloadpage(); lifecycle(); }, 4000); })(); function log() { var text = '%c'; for(var i=0;i<arguments.length;i++){ text += arguments[i]+' '; } console.log(text, 'color: #43bb88;font-size: 14px;font-weight: bold'); } function reloadpage() { let timeid = setInterval(function() { var myDate = new Date(); var hours=myDate.getHours(); var reload_page = GM_getValue("reload_page"); if (typeof(reload_page)=="undefined") { GM_setValue("reload_page","start"); } //每4小时刷新一下当前页面 var reload=(hours%4); if (reload==0&&reload_page=="start") { GM_setValue("reload_page","stop") window.location.reload(); }; if (reload!=0&&reload_page=="stop") { GM_setValue("reload_page","start") }; }, 10000); } function lifecycle() { log('奥利给!!!仙豆庄园领水滴了,开干~'); log(new Date()); let timeid = setInterval(function() { var myDate = new Date(); var hours=myDate.getHours(); var mins=myDate.getMinutes(); var secs=myDate.getSeconds(); //0:6:0~0:0:10刷新一次 if (hours==6&&mins==0&&(secs>=0&&secs<=10)) { window.location.reload(); } var now_time=myDate.toLocaleString(); if (document.getElementsByClassName("index-module__dropNum___2l8LP")) { var num = document.getElementsByClassName("index-module__dropNum___2l8LP")[0].innerText; //log("水滴 ->> " + num); num = parseFloat(num); //log("水滴 ->> " + num); if (num >= 100) { log("水滴到100啦") //document.getElementById("alternator").click(); document.getElementsByClassName("index-module__dropNum___2l8LP")[0].click(); //document.getElementsByClassName('close')[0].click(); //clearInterval(timeid); //setTimeout(function() { //document.querySelector(".simple_dialog_btn").click(); //lifecycle(); //}, 1000) }; //======================================================= var num1 = document.getElementsByClassName("index-module__num___3PYky")[1].innerText; //log("总水滴 ->> " + num1); num1 = parseFloat(num1); //log("总水滴 ->> " + num1); if (num1 >= 100) { log("开始浇水啦"); //document.getElementById("alternator").click(); document.getElementsByClassName("taro-img index-module__bubble_new___1kUb6")[0].click() }; if (document.getElementsByClassName("index-module__levelUpBtn___12Gn0")[0]) { log("关闭升级窗口"); document.getElementsByClassName("index-module__levelUpBtn___12Gn0")[0].click(); }; if (document.getElementsByClassName("index-module__bean___NYhSu")&&mins==0) { log(now_time); log("点点树偶尔获取水滴"); document.getElementsByClassName("index-module__bean___NYhSu")[0].click(); if (document.getElementsByClassName("index-module__closeBtn___PN4wM")) { log("点点树关闭"); document.getElementsByClassName("index-module__closeBtn___PN4wM")[0].click() }; }; }; },4000); }