Saucsse / Repair Design Respawn

// ==UserScript==
// @name         Repair Design Respawn
// @namespace    
// @version      3
// @description  Update 29.4 to .5
// @author       Craftbukkit
// @match        http://www.jeuxvideo.com/forums*
// @grant        none
// @run-at document-start
// ==/UserScript==
(function() {
    'use strict';
    document.getElementsByTagName("head")[0].innerHTML += '<link href="http://static.jvc.gg/1.28.0/css/skin-forum.css" rel="stylesheet" /><link href="http://static.jvc.gg/1.29.1/css/skin-common.css" rel="stylesheet" />';
    (function ifLoad()
     {
        if(document.body)
        {
            var link = document.getElementsByTagName("link").length;
            for(var i = 0;i<link;i++) {
                if(document.getElementsByTagName("link")[i].href.indexOf("29.5") != "-1" || document.getElementsByTagName("link")[i].href.indexOf("29.6") != "-1" || document.getElementsByTagName("link")[i].href.indexOf("29.7") != "-1") {
                    document.getElementsByTagName("link")[i].href = "";
                }
            }
        }
        else
        {
            setTimeout(ifLoad, 10);
        }
    }
    )();
})();