您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Automatically click through popups on https://seller.kuajingmaihuo.com/ including the final 'I have read' popup
// ==UserScript== // @name TEMU自动点击下一条 // @license MIT // @namespace http://tampermonkey.net/ // @version 0.2 // @description Automatically click through popups on https://seller.kuajingmaihuo.com/ including the final 'I have read' popup // @author Your Name // @match https://seller.kuajingmaihuo.com/* // @grant none // ==/UserScript== (function() { 'use strict'; // Helper function to click buttons with specific text function clickPopupButtons(buttonText) { // Find all buttons with the specific class that might be used in popups let buttons = document.querySelectorAll('button.BTN_outerWrapperBtn_5-109-0'); // Iterate over the buttons and click the one with the matching text buttons.forEach(function(button) { if (button.textContent.includes(buttonText)) { button.click(); } }); } // Set an interval to try and click the buttons every 500 milliseconds (0.5 second) setInterval(function() { // Click the 'Next' button clickPopupButtons('下一条'); // Click the 'I have read' button, which is the new popup button clickPopupButtons('我已阅读'); }, 500); })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址