CodinGame customization

Customize webpage of CodinGame

Verze ze dne 08. 01. 2016. Zobrazit nejnovější verzi.

K instalaci tototo skriptu si budete muset nainstalovat rozšíření jako Tampermonkey, Greasemonkey nebo Violentmonkey.

You will need to install an extension such as Tampermonkey to install this script.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Userscripts.

You will need to install an extension such as Tampermonkey to install this script.

K instalaci tohoto skriptu si budete muset nainstalovat manažer uživatelských skriptů.

(Už mám manažer uživatelských skriptů, nechte mě ho nainstalovat!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(Už mám manažer uživatelských stylů, nechte mě ho nainstalovat!)

// ==UserScript==
// @name         CodinGame customization
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  Customize webpage of CodinGame
// @author       Amendil
// @include      https://*.codingame.com*
// @require      http://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js
// @grant        GM_addStyle
// @noframes
// ==/UserScript==
/* jshint -W097 */
'use strict';

var expandCollapse = function(levelPuzzlesElement) {
    levelPuzzlesElement.style.display = levelPuzzlesElement.style.display === 'none' ? '' : 'none';
};

$(window).load(function() {
    var levels = $('.level');

    var expandCollapseLevel = function(levelElement) {
        expandCollapse($(levelElement).find('.level-puzzles')[0]);
    };

    for(var i = 0; i < levels.length; ++i) {
        var div = levels[i];

        div.addEventListener('click', function(event) {
            var targetElement = event.target || event.srcElement;
            var levelElement = $(targetElement).parents('.level')[0];

            expandCollapseLevel(levelElement);
        });

        var progress = $(div).find('.level-progress-value-value')[0].textContent;
        if(progress === '100') {
            expandCollapseLevel(div);
        }
    }
});