Skip to content

Instantly share code, notes, and snippets.

@rz7d
Forked from katabame/tweetdeck.css
Last active February 9, 2021 02:35
Show Gist options
  • Save rz7d/c1480243dded686f71859c78542027c3 to your computer and use it in GitHub Desktop.
Save rz7d/c1480243dded686f71859c78542027c3 to your computer and use it in GitHub Desktop.
Tweetdeckの背景を好きな画像に変更するやつ
/**********
TweetDeckの背景を好きな画像に変更するやつ
LICENSE: WTFPL
-- 使い方 --
0. カスタムCSSをあてられる環境を作ります
BetterTweetDeck ( https://better.tw/ ) をインストール
1. BetterTweetDeckの設定を開く
Chromeの拡張機能の設定から開くか、TweetDeckの左端に追加されている青色のボタンをクリック
2. Custom CSSに移動し、このCSSをコピペ
画像とかは変えてね
3. [変更を保存] をクリック (クリックできないときは、適当な場所に改行を追加してみてください)
4. TweetDeckをリロードする
F5押すなりリロードボタンクリックするなり
**********/
.column, .app-columns
{
margin: 0 !important;
}
::-webkit-scrollbar, .column, .stream-item, .app-columns-container, .column-header, .scroll-conversation
{
background-color: rgba(0, 0, 0, .3) !important;
/* カラムの黒色が強いと感じたら最後の .3 を .2 や .1 に変えてください */
}
.column-panel
{
background-color: transparent !important;
}
.column-message
{
background-color: rgba(0, 0, 0, .6) !important;
}
.app-columns
{
/* ここのURLを使いたい画像へのリンクに変更する ↓ */
background-image: url("https://images.unsplash.com/photo-1485736982040-28ae1d52881d");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment