Hide the Community Bulletin

Hides Community Bulletin panel

Verze ze dne 13. 08. 2014. Zobrazit nejnovější verzi.

// ==UserScript==
// @name           Hide the Community Bulletin
// @author         Cameron Bernhardt (AstroCB)
// @version        1.0.0
// @namespace      http://greasyforks.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";
}
长期地址
遇到问题?请前往 GitHub 提 Issues。