Greasy Fork镜像 还支持 简体中文。

Hide Rating chess.com live game

A Working script to hide rating of your oppenent in live game of chess.com

  1. // ==UserScript==
  2. // @name Hide Rating chess.com live game
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.1
  5. // @description A Working script to hide rating of your oppenent in live game of chess.com
  6. // @author Aurelpt
  7. // @include https://www.chess.com/*
  8. // @grant none
  9. // @run-at document-body
  10. // ==/UserScript==
  11.  
  12. (function() {
  13. 'use strict';
  14.  
  15. function lookforrating(classe) {
  16.  
  17. if (document.getElementsByClassName(classe)) {
  18.  
  19. var all = document.getElementsByClassName(classe);
  20.  
  21. for (let i = 0; i < all.length; i++) {
  22.  
  23. all[i].innerHTML = "";
  24. }
  25.  
  26. }
  27.  
  28. }
  29.  
  30. setInterval(() => {
  31.  
  32. lookforrating("user-tagline-rating")
  33. lookforrating("user-rating")
  34.  
  35. }, 100);
  36.  
  37. })();

QingJ © 2025

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