Better Gcores

更好的机核网

  1. // ==UserScript==
  2. // @name Better Gcores
  3. // @namespace jerryshell
  4. // @version 0.0.1
  5. // @description 更好的机核网
  6. // @author github.com/jerryshell
  7. // @match *://*.gcores.com/*
  8. // @icon https://www.google.com/s2/favicons?sz=64&domain=gcores.com
  9. // @grant none
  10. // @license GNU Affero General Public License v3.0
  11. // ==/UserScript==
  12.  
  13. (function () {
  14. 'use strict';
  15. new MutationObserver(() => {
  16. const commentsElement = document.querySelector('div.originalPage_comments');
  17. if (commentsElement) {
  18. commentsElement.remove();
  19. }
  20. }).observe(document.querySelector('body'), {
  21. childList: true,
  22. attributes: true,
  23. subtree: true,
  24. });
  25. })();

QingJ © 2025

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