
Untitled
By: a guest on
Jun 16th, 2012 | syntax:
JavaScript | size: 0.28 KB | hits: 31 | expires: Never
// ==UserScript==
// @name youtube hd1
// @namespace thiscall
// @description always enable hd=1 on youtube
// @include http://*youtube.com/watch*
// ==/UserScript==
if(window.location.search.indexOf('hd=1') == -1)
window.location.href += '&hd=1';