Advertisement
Guest User

Untitled

a guest
Mar 18th, 2017
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.12 KB | None | 0 0
  1. // ==UserScript==
  2. // @name Skolnet AutoLogin
  3. // @description Automaticaly login to Skolnet
  4. // @version 1.0
  5. // @author TH3PF
  6. // @include https://wireless.skovde.se/*
  7. // @include https://wireless.skovde.se/fs/customwebauth/login_1-1.html*
  8. // @require https://ajax.googleapis.com/ajax/libs/jquery/1.6.0/jquery.min.js
  9. // @grant none
  10. // @history 1.0 First version
  11. // ==/UserScript==
  12.  
  13. // ============================================================================
  14. // Adaptive CSS filter configuration (fixed various layout bugs caused by
  15. // evolving youtube layout design, and interfering user scripts).
  16. // ============================================================================
  17.  
  18.  
  19. $(function(){
  20. //url = "https://wireless.skovde.se/fs/customwebauth/login_1-1.html?switch_url=https://wireless.skovde.se/login.html&ap_mac=00:26:99:4f:ff:a0&wlan=skolnet&redirect=www.google.com/";
  21.  
  22. var username = "INSERT_YOUR_USERNAME_HERE";
  23. var password = "INSERT_YOUR_PASSWORD_HERE";
  24.  
  25. location.href = "javascript:void(loginFunction(username, password));";
  26. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement