Hides Community Bulletin panel
当前为
// ==UserScript==
// @name Hide the Community Bulletin
// @author Cameron Bernhardt (AstroCB)
// @version 1.0.0
// @namespace http://greasyfork.org
// @description Hides Community Bulletin panel
// @include http://*.stackexchange.com/*
// @include http://stackoverflow.com/*
// @include http://meta.stackoverflow.com/*
// @include http://serverfault.com/*
// @include http://meta.serverfault.com/*
// @include http://superuser.com/posts/*
// @include http://meta.superuser.com/posts/*
// @include http://askubuntu.com/posts/*
// @include http://meta.askubuntu.com/posts/*
// @include http://stackapps.com/posts/*
// ==/UserScript==
var cb = document.getElementsByClassName("community-bulletin");
if(cb){
cb[0].style.visibility = "hidden";
cb[0].style.height = "0";
}