afr / auto_reload_insera

// ==UserScript==
// @name         auto_reload_insera
// @namespace    http://tampermonkey.net/
// @version      1.1
// @description  try to take over the world!
// @author       afr
// @match        https://oss-incident.telkom.co.id/jw/web/userview/ticketIncidentService/ticketIncidentService/_/inboxTicketLoker*
// @grant        none
// @copyright    2023
// @license      MIT
// @updateURL https://openuserjs.org/meta/afr/auto_reload_insera.meta.js
// @downloadURL https://openuserjs.org/install/afr/auto_reload_insera.user.js
// ==/UserScript==

(function () {
  'use strict';

  // Your code here...
  setTimeout(() => {
    $("select#d-6878233-ps").prop("selectedIndex", 5);
    $('input[type="submit"]').submit();
  }, 30000);
})();