-
-
Save rummelonp/1052500 to your computer and use it in GitHub Desktop.
twitterのサイドバーとか透明に設定させるやつ
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
// https://twitter.com/settings/design でブラウザのURL入ってるとこに入れて保存する | |
// サイドバーと背景は透明になるけど流石にfontは消えなかった。transparentとか指定しても弾かれる | |
javascript:d=document;d.getElementById("user_profile_sidebar_fill_color").value = '';d.getElementById("user_profile_sidebar_border_color").value = '';d.getElementById("user_profile_text_color").value = '';d.getElementById("user_profile_background_color").value = '';d.getElementById("user_profile_link_color").value = '';void(0); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment