// ==UserScript== // @name Toped Bayar // @namespace http://tampermonkey.net/ // @version 0.1 // @description try to take over the world! // @author Jamielcs // @match https://www.tokopedia.com/cart/shipment?ref=1 // @grant none // @downloadURL none // ==/UserScript== (function() { 'use strict'; setTimeout(function() { document.querySelectorAll('div.toggle-handler')[0].click(); }, 1500); setTimeout(function() { document.querySelectorAll('div.rbh__item-label')[0].click(); }, 2500); setTimeout(function() { document.querySelectorAll('div.btn.proceed-button')[0].click(); }, 3500); })();