Advertisement
Guest User

Untitled

a guest
Jul 20th, 2017
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. // @match https://teamtreehouse.com/*
  2.  
  3. function loginToTreehouse () {
  4. if ( !document.body.classList.contains("logged-in") ) {
  5. if ( window.location.href.indexOf("signin") == -1 ) {
  6. window.location.href = "https://teamtreehouse.com/signin?return_to=%2F";
  7. }
  8. }
  9. }
  10.  
  11. loginToTreehouse();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement