// ==UserScript== // @name Youtube Link Fix for addons/scripts // @namespace http://www.youtube.com/ // @version 0.6 // @description [Works in FF and Chrome!] changes youtube links to refresh whole page, so other scripts will work. // @author William H // @include *youtube.com/* // @grant none // @require http://code.jquery.com/jquery-latest.js // @downloadURL none // ==/UserScript== window.addEventListener("load", convertMyLinks($('[class$=" spf-link "]')), false); if(document.readyState == "complete"){ convertMyLinks($('[class$=" spf-link "]')); } function convertMyLinks(elemArray) { for (i = 0; i < elemArray.length; i += 1) { $(elemArray[i]).attr("href", elemArray[i].href).removeAttr('data-sessionlink').removeAttr('rel').attr('class', $(elemArray[i]).attr('class').split(" spf-link ")[0]); } }