SPOJ remove profile incomplete warning

BUG:It always shows me the warning that my profile is only 50% complete.

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         SPOJ remove profile incomplete warning
// @namespace    https://www.luogu.com.cn/user/576074
// @version      2025-04-13
// @description  BUG:It always shows me the warning that my profile is only 50% complete.
// @author       123asdf123
// @license      WTFPL
// @match        *://*.spoj.com/*
// @icon         https://spoj.com/favicon.ico
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    var p=document.querySelector(".dropdown.profile").previousElementSibling;
    if(p.style="margin-right: 0px;")
        p.parentElement.removeChild(p);
})();