Last active
September 23, 2021 02:24
-
-
Save katabame/e69f11fc7de776dc41b674331f1d9656 to your computer and use it in GitHub Desktop.
Tweetdeckの背景を好きな画像に変更するやつ
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
/********** | |
Tweetdeckの背景を好きな画像に変更するやつ | |
LICENSE: WTFPL | |
-- 使い方 -- | |
0. カスタムCSSをあてられる環境を作ります | |
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 に変えてください */ | |
} | |
.app-columns | |
{ | |
background-image: url("https://images.unsplash.com/photo-1485736982040-28ae1d52881d"); | |
/* ここのURLを使いたい画像へのリンクに変更する ↑ */ | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment