Skip to content

Instantly share code, notes, and snippets.

@toshia
Created September 23, 2011 17:00
Show Gist options
  • Save toshia/1237882 to your computer and use it in GitHub Desktop.
Save toshia/1237882 to your computer and use it in GitHub Desktop.
ておくれよう
// ==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