Advertisement
Rapptz

youtuberedirect.user.js

May 4th, 2013
327
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // ==UserScript==
  2. // @name        YouTube redirect
  3. // @namespace   Rapptz.Misc
  4. // @author      Rapptz
  5. // @description Redirects you to your subscription page
  6. // @include     http://www.youtube.com/
  7. // @include     https://www.youtube.com/
  8. // @version     1.1
  9. // @run-at      document-start
  10. // ==/UserScript==
  11.  
  12. var newURL = "https://www.youtube.com/my_subscriptions"
  13.  
  14. window.location.replace(newURL);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement