CodinGame customization

Customize webpage of CodinGame

اعتبارا من 08-01-2016. شاهد أحدث إصدار.

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

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

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

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

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

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

(I already have a user script manager, let me install it!)

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.

ستحتاج إلى تثبيت إضافة مثل Stylus لتثبيت هذا النمط.

ستحتاج إلى تثبيت إضافة لإدارة أنماط المستخدم لتتمكن من تثبيت هذا النمط.

ستحتاج إلى تثبيت إضافة لإدارة أنماط المستخدم لتثبيت هذا النمط.

ستحتاج إلى تثبيت إضافة لإدارة أنماط المستخدم لتثبيت هذا النمط.

(لدي بالفعل مثبت أنماط للمستخدم، دعني أقم بتثبيته!)

// ==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);
        }
    }
});