4
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Trelloのフォントをきれいにする

Last updated at Posted at 2017-02-27

Trelloのフォントが気に入らなかったのでちょっと修正しました。
trello.gif

前提

mac
Chrome

ScriptAutoRunner Install

まずは、ScriptAutoRunner という JavaScript を自動実行させる拡張機能をインストールします。

JavaScript追加

ScriptAutoRunner のオプションページで スクリーンショット 2017-02-25 23.07.09.png をクリックし、Script の中に以下のスクリプトをコピペします。

function a(){
  $('.list-card-title').css({'font-family':'Meiryo, Arial','font-size':'12px','padding':'8px'});
};
setInterval("a()",1000);

有効化

コンセント部分と壁部分をクリックします。
黄色になって通電するような感じになったら有効化できてます。

a5420b8d-e440-86c6-2beb-dd8d0585baf1.gif

補足

Target hostname に trello.com と入れておいたほうがいいかもしれません。たぶん他サイトのときは js 動かなくなる機能だと思うので余計なオーバーヘッドが発生しなくなります。

動作確認

ブラウザで Trello を開くか更新します。jsが動いてフォント変更されたことを確認します。
trello.gif

4
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
4
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?