// ==UserScript== // @name Toped Tambah Ke Keranjang // @namespace http://tampermonkey.net/ // @version 0.20.19 // @description Go to 10 Ribu Orderan Per Hari! // @author Jamielcs // @match https://www.tokopedia.com/*/* // @grant none // @downloadURL https://update.greasyfork.icu/scripts/376397/Toped%20Tambah%20Ke%20Keranjang.user.js // @updateURL https://update.greasyfork.icu/scripts/376397/Toped%20Tambah%20Ke%20Keranjang.meta.js // ==/UserScript== (function() { 'use strict'; window.onload = function() { setTimeout(function() { document.querySelectorAll('span.inline-block.va-middle')[0].click(); }, 1500); }; })();