Remove Junk From Gaia Signatures NOT aquariums

Removes scion license, car, etc. It does NOT remove the standard signature which is controlled from your account settings. Excludes aquariums because there is a game associated with it.

  1. // ==UserScript==
  2. // @name Remove Junk From Gaia Signatures NOT aquariums
  3. // @description Removes scion license, car, etc. It does NOT remove the standard signature which is controlled from your account settings. Excludes aquariums because there is a game associated with it.
  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.20140525024111
  9. // @namespace https://greasyfork.org/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 div:not(.forum-flash-signature) {display:none}' );