Created
September 1, 2011 18:55
-
-
Save ohnishiakira/1186949 to your computer and use it in GitHub Desktop.
theinterviews.jp、「あなたへのお知らせ」が0件でも赤色で表示されて何か来てるんじゃないかと思ってしまうので0件の時は灰色にするようにした
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==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