Summoner Name Masking

Apply mosaic effect to summoner names

  1. // ==UserScript==
  2. // @name Summoner Name Masking
  3. // @namespace https://gf.qytechs.cn/zh-TW/users/1284613
  4. // @version 0.1
  5. // @description Apply mosaic effect to summoner names
  6. // @match *://www.op.gg/*
  7. // @grant none
  8. // @license MIT
  9. // ==/UserScript==
  10.  
  11. (function() {
  12. 'use strict';
  13.  
  14. // 選擇所有包含特定類名的span元素
  15. const nameElements = document.querySelectorAll('span.css-ao94tw.e1swkqyq1');
  16.  
  17. nameElements.forEach(element => {
  18. element.style.color = 'transparent';
  19. element.style.textShadow = '#fff 0 0 4px';
  20. element.style.userSelect = 'none';
  21. });
  22. })();

QingJ © 2025

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