Save_Paken_AtCoder_Account

If you try to participate on AtCoder in the shared account, this script stops you.

Od 21.04.2020.. Pogledajte najnovija verzija.

// ==UserScript==
// @name         Save_Paken_AtCoder_Account
// @namespace    https://tkpaken.github.io/beginners/
// @version      0.1
// @description  If you try to participate on AtCoder in the shared account, this script stops you.
// @author       kaage
// @match        https://atcoder.jp/contests/*
// @exclude      https://atcoder.jp/contests/APG4b
// @grant        none
// ==/UserScript==

(function() {
    var str = (document.getElementsByClassName('dropdown-toggle'))[1].innerHTML;
    if(str.match('.*pakenTK.*')){
        form_logout.submit();
    }
})();