2009-05-26
はてなブックマークプラスに登録していないユーザーをエントリーページから抹消する JavaScript と Greasemonkey
はじめに
はてなブックマークプラス がリリースされましたね!
というわけで、「てなブックマークプラスに登録していない(正確には、 plus アイコンを出していない)ユーザーをエントリーページから抹消する JavaScript」を書いてみました!!
これで、はてブプラス民に囲まれて幸せですね!
やったね!
ご自由にお使いください(Firefox or Safari で動くと思います)
Ten.Selector.getElementsBySelector('ul#bookmarked_user > li').filter(function(e) { return !e.getElementsByClassName('plus_icon').length }).forEach(function(e) { e.style.display = 'none' });
javascript:void(Ten.Selector.getElementsBySelector('ul#bookmarked_user > li').filter(function(e) { return !e.getElementsByClassName('plus_icon').length }).forEach(function(e) { e.style.display = 'none' }));
グリモン
// ==UserScript== // @namespace http://d.hatena.ne.jp/amachang/ // @include http://b.hatena.ne.jp/entry/* // @include http://b.hatena.ne.jp/entry?mode=more&url=* // ==/UserScript== location.href = "javascript:void(Ten.Selector.getElementsBySelector('ul#bookmarked_user > li').filter(function(e) { return !e.getElementsByClassName('plus_icon').length }).forEach(function(e) { e.style.display = 'none' }))";
トラックバック - http://d.hatena.ne.jp/amachang/20090526/1243318147
リンク元
- 309 http://d.hatena.ne.jp/
- 298 http://reader.livedoor.com/reader/
- 136 http://b.hatena.ne.jp/hotentry
- 114 http://b.hatena.ne.jp/entry/http://d.hatena.ne.jp/amachang/20090526/1243318147
- 105 http://b.hatena.ne.jp/
- 84 http://b.hatena.ne.jp/hotentry/it
- 83 http://www.google.co.jp/reader/view/
- 81 http://www.google.com/reader/view/
- 76 http://d.hatena.ne.jp/Yuichirou/20090526
- 73 http://www.google.co.jp/search?hl=ja&client=firefox-a&rls=org.mozilla:ja:official&hs=ufP&q=xpath+javascript&btnG=検索&lr=lang_ja

