Created
July 22, 2011 06:19
-
-
Save kk6/1098978 to your computer and use it in GitHub Desktop.
This file contains 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== | |
// @name MyPixiv | |
// @namespace http://d.hatena.ne.jp/kk6/ | |
// @description とりあえずお知らせを隠す機能だけ。 | |
// @include http://www.pixiv.net/* | |
// ==/UserScript== | |
(function ($) { | |
var news = $('.NewsTop > h1, .adver_Rightcolumn + .area_right > .area_rightSpace'); | |
news.next().hide(); | |
news.click(function () { | |
$(this).next().toggle(); | |
}) | |
})(unsafeWindow.jQuery); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
アドバイスを頂いてすごく短くなった。