Greasy Fork is available in English.

Script untuk hilangin notif di exam.apps.binus.ac.id

buat orang-orang yang males ngilangin notif di exam binus

  1. // ==UserScript==
  2. // @name Script untuk hilangin notif di exam.apps.binus.ac.id
  3. // @namespace http://tampermonkey.net/
  4. // @version 6.9
  5. // @description buat orang-orang yang males ngilangin notif di exam binus
  6. // @author Vincent Tjianattan
  7. // @match https://exam.apps.binus.ac.id/Home/Exam
  8. // @grant none
  9. // ==/UserScript==
  10.  
  11. (function() {
  12. 'use strict';
  13.  
  14. $('.swal2-cancel').click();
  15. var index = $("#ddlPeriod option").length-1;
  16. $("#ddlPeriod").prop("selectedIndex", index).val();
  17. $('#btnSearch').click();
  18. })();