DuoLeaderboardRemover+

Make leaderboard invisible

  1. // ==UserScript==
  2. // @name DuoLeaderboardRemover+
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.1
  5. // @description Make leaderboard invisible
  6. // @author EA2
  7. // @match *://www.duolingo.com/*
  8. // @grant none
  9. // ==/UserScript==
  10.  
  11. (function() {
  12. // Enable global CSS adding
  13. function addGlobalStyle(css) {
  14. var head, style;
  15. head = document.getElementsByTagName('head')[0];
  16. if (!head) { return; }
  17. style = document.createElement('style');
  18. style.type = 'text/css';
  19. style.innerHTML = css;
  20. head.appendChild(style);
  21. }
  22.  
  23. // Add CSS
  24. addGlobalStyle('._2ANgP.a5SW0 {display: none !important;}')
  25. addGlobalStyle('.-X3R5._25sFh {display: none !important;}')
  26. addGlobalStyle('._20HVc._3J-7b {display: none !important;}')
  27. })();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址