Temu daily pop-up price drop window so got a one-click different price adjustment script! The script should be used with Grease Monkey! The script js script can be copied directly to the Grease Monkey can also be directly created a file suffix js file Then copy the content using a text editor and paste it before dragging it to the Grease Monkey script. Suggest directly in the Grease Monkey script to create a new script directly copy the content!
Click on the top right corner to start directly disagreeing with the price adjustment with one click!!!!
functionautoClick() { // Click on the element with class RD_textWrapper_5-111-0. clickElements('div.RD_textWrapper_5-111-0.RD_prevRadio_5-111-0'); // Click on the element “I am aware of the risks and will not be alerted this time”. clickElements('div.CBX_textWrapper_5-111-0.CBX_prevCheckSquare_5-111-0'); // Click the Confirm button clickElements('button[data-tracking-id="zIb_kvR_JvmInKd9"].BTN_outerWrapper_5-111-0.BTN_danger_5-111-0.BTN_medium_5-111-0.BTN_outerWrapperBtn_5-111-0[data-testid="beast-core-button"]'); }
functionstartAutoClick() { if (!isRunning) { autoClick(); // CLICK intervalId = setInterval(autoClick, 3000); // Three second click isRunning = true; } }