Remove background highlighting of Noob-club backer comments

Disables the highlighting of backer comments on the Noob-club forum

目前为 2024-03-23 提交的版本,查看 最新版本

  1. // ==UserScript==
  2. // @name Remove background highlighting of Noob-club backer comments
  3. // @description Disables the highlighting of backer comments on the Noob-club forum
  4. // @version 20240323.1
  5. // @license MIT
  6. // @match https://www.noob-club.ru/index.php?topic=*
  7. // @namespace noob-club
  8. // ==/UserScript==
  9.  
  10. let elements = document.querySelectorAll('div.i_am_backer');
  11. elements.forEach((element) => {
  12. element.removeAttribute("style");
  13. });