Hide Announcements

Hide Announcements on all pages

目前为 2014-07-25 提交的版本。查看 最新版本

// ==UserScript==
// @name        Hide Announcements
// @description Hide Announcements on all pages
// @namespace   gaiarch_v3
// @include     http://www.gaiaonline.com/*
// @version     2
// @grant       none
// ==/UserScript==
(function () {
    var bubblelist = document.querySelector('#notifyItemList');
    var listitems = bubblelist.children;
    if (listitems.length > 0) {
        Array.prototype.forEach.call(listitems, function(item, idx, list) {
            if(item.classList.contains('notify_announcements')) {
                item.remove();
                if(list.length === 0) document.querySelector('#notifyBubbleContainer').remove();
            }
        })
    }
})();

QingJ © 2025

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