Remove Junk From Gaia Signatures

Removes scion license, car, aquarium, .etc. It does NOT remove the standard signature which is controlled from your account settings.

  1. // ==UserScript==
  2. // @name Remove Junk From Gaia Signatures
  3. // @description Removes scion license, car, aquarium, .etc. It does NOT remove the standard signature which is controlled from your account settings.
  4. // @include http://*.gaiaonline.com/forum/*
  5. // @include http://gaiaonline.com/forum/*
  6. // @include https://*.gaiaonline.com/forum/*
  7. // @include https://gaiaonline.com/forum/*
  8. // @version 0.0.1.20140525024114
  9. // @namespace https://gf.qytechs.cn/users/2178
  10. // ==/UserScript==
  11. function addGlobalStyle(css) {
  12. var head, style;
  13. head = document.getElementsByTagName('head')[0];
  14. if (!head) { return; }
  15. style = document.createElement('style');
  16. style.type = 'text/css';
  17. style.innerHTML = css;
  18. head.appendChild(style);
  19. }
  20.  
  21. addGlobalStyle(
  22. '.extra_sigs {display:none}' );

QingJ © 2025

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