Greasy Fork is available in English.

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://greatest.deepsurf.us/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}' );