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/

  1. td:nth-child(1)[class*="st-dtitle"],  
  2. td:nth-child(1)[class*="st-bg"]{  
  3.  background-color :#ffeeee !important;  
  4. }  
  5.   
  6. td:nth-child(7)[class*="st-dtitle"],  
  7. td:nth-child(7)[class*="st-bg"]{  
  8.  background-color :#eeeeff !important;  
  9. }  



コメント