Advertisement
Guest User

Untitled

a guest
Mar 17th, 2014
529
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.80 KB | None | 0 0
  1. // ==UserScript==
  2. // @name Youtube Advertisement Mangement
  3. // @namespace schippi (modified by AcasShows)
  4. // @include http://www.youtube.com/watch*
  5. // @include https://www.youtube.com/watch*
  6. // @version 1.1
  7. // ==/UserScript==
  8.  
  9. var u = window.location.href;
  10. if(u.search("user=") == -1){
  11. if (!! document.getElementById("ud")) {
  12. var user = document.getElementById("ud").getElementsByTagName("a")[0].getAttribute("href").split("/")[2];
  13. window.location.href = u+"&user="+user;
  14. }
  15. else if (!! document.getElementById("body")) {
  16. user = document.getElementById("watch7-user-header").getElementsByTagName("a")[0].getAttribute("href").split("/")[2]
  17. window.location.href = u+"&user="+user;
  18. }
  19. else {
  20. alert('script failed');
  21. }
  22.  
  23. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement