BlibliTest

try to take over the world!

// ==UserScript==
// @name         BlibliTest
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  try to take over the world!
// @author       You
// @match        https://www.blibli.com/checkout/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    setTimeout(function() {
    document.getElementById('gdn-promo-id').value = "kejutan5";
    },2000);
    setTimeout(function() {
    document.getElementById('gdn-use-promo-id').click();
    },3000);
})();