I prefer the look and feel of Firefox 2, but Youtube doesn't. None of the Greasemonkey scripts I use will work there unless I click "return to the original page" (Youtube places me on a light-weight version due to my out-of-date browser). The only difference between the pages that I could spot was a &nofeather=True
at the end of the "original" url. So I decided to try and write a Greasemonkey script that would automatically re-direct me. As you can see below, I know (more or less) nothing about writing one... and though my current solution works, I've been wondering if there's a better way of doing it.
// ==UserScript==
// @name Youtube Redirect
// @namespace ??
// @include http://www.youtube.com/watch?v*
// @exclude http://www.youtube.com/watch?v*&nofeather=True
// ==/UserScript==
(function(){
window.location.href = window.location.href + "&nofeather=True";
})();
Any tips would be appreciated, and thanks for your time.