Gaia - Hide Announcements

Hide Announcements

  1. // ==UserScript==
  2. // @name Gaia - Hide Announcements
  3. // @description Hide Announcements
  4. // @namespace gaiarch_v3
  5. // @include http://www.gaiaonline.com/*
  6. // @version 2
  7. // @grant none
  8. // ==/UserScript==
  9. (function () {
  10. var bubblelist = document.querySelector('#notifyItemList');
  11. var listitems = bubblelist.children;
  12. if (listitems.length > 0) {
  13. Array.prototype.forEach.call(listitems, function(item, idx, list) {
  14. if(item.classList.contains('notify_announcements')) {
  15. item.remove();
  16. if(list.length === 0) document.querySelector('#notifyBubbleContainer').remove();
  17. }
  18. })
  19. }
  20. })();