// ==UserScript== // @name 蝦皮清空購物車 // @namespace http://tampermonkey.net/ // @version 0.1 // @description 蝦皮自動清空購物車 // @author You // @match https://shopee.tw/cart // @icon https://www.google.com/s2/favicons?sz=64&domain=shopee.tw // @grant none // @license MIT // @downloadURL none // ==/UserScript== (function() { 'use strict'; // Your code here... setTimeout(function(){document.querySelectorAll('.RCd1Gx')[0].click();},1000); setTimeout(function(){window.location.reload();},1100); })();