SPOJ remove profile incomplete warning

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

  1. // ==UserScript==
  2. // @name SPOJ remove profile incomplete warning
  3. // @namespace https://www.luogu.com.cn/user/576074
  4. // @version 2025-04-13
  5. // @description BUG:It always shows me the warning that my profile is only 50% complete.
  6. // @author 123asdf123
  7. // @license WTFPL
  8. // @match *://*.spoj.com/*
  9. // @icon https://spoj.com/favicon.ico
  10. // @grant none
  11. // ==/UserScript==
  12.  
  13. (function() {
  14. 'use strict';
  15. var p=document.querySelector(".dropdown.profile").previousElementSibling;
  16. if(p.style="margin-right: 0px;")
  17. p.parentElement.removeChild(p);
  18. })();