Lichess Compact Lobby

Display blog, tournaments and simuls within seek box. Hide leaderboards and forum posts.

目前为 2016-12-18 提交的版本,查看 最新版本

// ==UserScript==
// @id          Lichess_Compact_Lobby@https://github.com/ddugovic/UserScripts
// @name        Lichess Compact Lobby
// @namespace   https://github.com/ddugovic/UserScripts
// @description Display blog, tournaments and simuls within seek box. Hide leaderboards and forum posts.
// @author      ddugovic
// @copyright   2015+, ddugovic
// @license     CC0 1.0 Universal
// @supportURL  https://github.com/ddugovic/UserScripts/issues
// @version     0.3
// @match       https://*.lichess.org/
// @grant       none
// @icon        https://raw.githubusercontent.com/ornicar/lila/master/public/images/favicon-32-white.png
// ==/UserScript==

var container = document.getElementById('hooks_wrap');
var theOriginal = document.getElementsByClassName('blog')[0];
theClone = theOriginal.cloneNode(true);
container.insertBefore(theClone, container.lastChild);
theClone.style.marginTop = '0px';
theClone.style.marginBottom = '15px';
theOriginal.parentNode.removeChild(theOriginal);

theOriginal = document.getElementById('enterable_tournaments').parentNode;
theClone = theOriginal.cloneNode(true);
container.insertBefore(theClone, container.lastChild);
theClone.style.marginTop = '0px';
theClone.style.marginBottom = '15px';
theOriginal.parentNode.removeChild(theOriginal);

theOriginal = document.getElementById('enterable_simuls').parentNode;
theClone = theOriginal.cloneNode(true);
container.insertBefore(theClone, container.lastChild);
theClone.style.marginTop = '0px';
theClone.style.marginBottom = '15px';
theOriginal.parentNode.removeChild(theOriginal);

leaderboards = document.getElementsByClassName('leaderboard');
var i;
for (i = leaderboards.length-1; i >= 0; i--) {
    leaderboards[i].parentNode.removeChild(leaderboards[i]);
}

clearfixes = document.getElementsByClassName('clearfix');
var i;
for (i = clearfixes.length-1; i >= 0; i--) {
    clearfixes[i].parentNode.removeChild(clearfixes[i]);
}

forumposts = document.getElementsByClassName('new_posts');
var i;
for (i = forumposts.length-1; i >= 0; i--) {
    forumposts[i].parentNode.removeChild(forumposts[i]);
}