您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Realiza el Peer Review automaticamente. Recuerda cambiar el link de @include a tu link del Peer Review (Si es diferente a este)
当前为
// ==UserScript== // @name Peer Review Automate (IMVU) // @description Realiza el Peer Review automaticamente. Recuerda cambiar el link de @include a tu link del Peer Review (Si es diferente a este) // @include https://es.imvu.com/peer_review/ // @version 1.2 // @namespace https://gf.qytechs.cn/users/471262 // ==/UserScript== //El script NO salta los Captchas de IMVU. ¡Debes estar pendiente! function sleep(milliseconds) { const date = Date.now(); let currentDate = null; do { currentDate = Date.now(); } while (currentDate - date < milliseconds); } ///Ejecutar al cargar pag. ¿Saltar productos AP? true = si, false = no window.onload = CheckRate(true); //Verificacion function CheckRate(SkipAP) { var CurrentRate = document.getElementById("rating").getElementsByTagName("p")[0].getElementsByTagName("strong")[0].textContent; if (CurrentRate == "Access Pass Only" && SkipAP) { console.log("This product is: ["+CurrentRate+"] Skipping..."); sleep(5000); skip(skipReview()); }else{ console.log("This product is: ["+CurrentRate+"] Reviewing..."); Review(); } } function skip(fn) { var script = document.createElement('script'); script.setAttribute("type", "application/javascript"); script.textContent = '(' + fn + ')();'; document.body.appendChild(script); // run the script document.body.removeChild(script); // clean up } function Review() { document.getElementById("view_in_3d").click(); sleep(2000); document.getElementById("cb_no_issues").click(); sleep(30000); //Retraso entre revisión de productos, Minimo 25 segundos, recomiendo 30 segundos. document.getElementById("yui-main").getElementsByTagName("form")[0].submit(); }
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址