EMB Auto Logout

auto login script for EMB HCI

  1. // ==UserScript==
  2. // @name EMB Auto Logout
  3. // @namespace http://www2.hci.edu.sg/t0111066c
  4. // @version 0.1
  5. // @description auto login script for EMB HCI
  6. // @author Yeo Xing Yee
  7. // @match http://messages.hci.edu.sg/smb/hs_student
  8. // @grant none
  9. // ==/UserScript==
  10.  
  11. var str = document.getElementsByTagName('font')[1].innerHTML;
  12. var n = str.indexOf("without");
  13. if((n)!=-1){
  14. window.location="http://messages.hci.edu.sg/cgi-bin/smb/logoutxyz.pl";
  15. }