Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Jun 16th, 2012  |  syntax: JavaScript  |  size: 0.28 KB  |  hits: 31  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. // ==UserScript==
  2. // @name           youtube hd1
  3. // @namespace      thiscall
  4. // @description    always enable hd=1 on youtube
  5. // @include        http://*youtube.com/watch*
  6. // ==/UserScript==
  7.  
  8. if(window.location.search.indexOf('hd=1') == -1)
  9.         window.location.href += '&hd=1';