Google Calendar with colored weekend days

Sets the background of the weekends in month view to beige, customize it easily for your own needs.

目前为 2015-01-05 提交的版本。查看 最新版本

// ==UserScript==
// @name        Google Calendar with colored weekend days
// @namespace   userscripts.org/user/swyter
// @description Sets the background of the weekends in month view to beige, customize it easily for your own needs.
// @match       https://www.google.com/calendar/*
// @version     1
// @grant       GM_addStyle
// ==/UserScript==

GM_addStyle(".mv-event-container td:nth-child(6),  \
             .mv-event-container td:nth-child(7)   \
             {                                     \
                background-color: beige;           \
             }                                     ");