Advertisement
Guest User

Untitled

a guest
Feb 27th, 2017
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // ==UserScript==
  2. // @name         New Userscript
  3. // @namespace    http://tampermonkey.net/
  4. // @version      0.1
  5. // @description  try to take over the world!
  6. // @author       You
  7. // @match        https://www.si.ips.pt/*
  8. // @grant        none
  9. // ==/UserScript==
  10.  
  11.  
  12.  
  13. function caralho() {
  14.     if (document.getElementsByClassName("conteudocentral")[0].childNodes[6].textContent == "Não tem permissão para aceder a esta página!") {
  15.         setTimeout(() => {
  16.             window.location.href = "https://www.si.ips.pt/ests_si/inscricoes_turmas_geral.inicio_inscricao?p_cur_codigo=9119";
  17.         }, 1500);
  18.     } else {
  19.         alert("ja deu esta merda");
  20.     }
  21. }
  22.  
  23. window.onload = caralho;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement