Google カレンダーの土日に色を付ける(Chrome + Stylish or Stylus)

2018年版はこちら

Chrome ブラウザで、CSSをいじって Google カレンダーの土日に色を付ける

拡張機能 Stylish または Stylus で、下記のようにCSSを追加し、GoogleカレンダーのURLを前方一致で設定する
【追記】
カレンダーのURLが変更になっています
https:/www.google.com/calendar/ → https://calendar.google.com/calendar/

td:nth-child(1)[class*="st-dtitle"],
td:nth-child(1)[class*="st-bg"]{
 background-color :#ffeeee !important;
}

td:nth-child(7)[class*="st-dtitle"],
td:nth-child(7)[class*="st-bg"]{
 background-color :#eeeeff !important;
}



コメント