Skip to content

Instantly share code, notes, and snippets.

@ohnishiakira
Created September 1, 2011 18:55
Show Gist options
  • Save ohnishiakira/1186949 to your computer and use it in GitHub Desktop.
Save ohnishiakira/1186949 to your computer and use it in GitHub Desktop.
theinterviews.jp、「あなたへのお知らせ」が0件でも赤色で表示されて何か来てるんじゃないかと思ってしまうので0件の時は灰色にするようにした
// ==UserScript==
// @match *://theinterviews.jp/*
// ==/UserScript==
(function() {
var count = document.querySelector("#global_menu .count");
if (count.innerText === "0") {
count.style.cssText = "background-color: gray;";
}
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment