Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save rummelonp/1052500 to your computer and use it in GitHub Desktop.
Save rummelonp/1052500 to your computer and use it in GitHub Desktop.
twitterのサイドバーとか透明に設定させるやつ
// 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