Antropex

O2.pl przekierowywanie do strony logowania po wylogowaniu

May 1st, 2020
135
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. // ==UserScript==
  2. // @name Automatyczne przekierowanie o2.pl
  3. // @description Automatycznie przekierowuje na pocztę po wylogowaniu (poczta.o2.pl) zamiast na wp.pl
  4. // @version 1.0
  5. // @author sosnax1
  6. // @include https://www.wp.pl/?wylogowano*
  7. // ==/UserScript==
  8.  
  9. var links = document.links;
  10. var url = links[0].href;
  11. window.location = 'https://poczta.o2.pl';
Add Comment
Please, Sign In to add comment