Created
September 23, 2011 17:00
-
-
Save toshia/1237882 to your computer and use it in GitHub Desktop.
ておくれよう
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== | |
// @name favstarfix | |
// @version 1.0 | |
// @namespace http://toshia.dip.jp/gm/favstarfix | |
// @description favstar display issue fix | |
// @include http://favstar.fm/* | |
// ==/UserScript | |
window.addEventListener('DOMContentLoaded', function(e){ | |
if( !document.body ) { return; } | |
// 自分をふぁぼっている人のリストを復活させる | |
document.getElementsByClassName("userLinks")[0].innerHTML += '<a class="navButton" href="/users/toshi_a/favs_from" title="Mad favterrorist">キチガイ</a>' | |
// ふぁぼられが多いと横幅があれで数字が開業されるから少しあける | |
document.getElementsByClassName("userStats")[0].getElementsByTagName("td")[0].setAttribute('style', 'width: 90px; overflow:hidden;') | |
}, false) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment