Skip to content

Instantly share code, notes, and snippets.

@gregory-seidman
Created May 24, 2021 14:14
Show Gist options
  • Save gregory-seidman/d52dbc28563034a247ce711e853b57bf to your computer and use it in GitHub Desktop.
Save gregory-seidman/d52dbc28563034a247ce711e853b57bf to your computer and use it in GitHub Desktop.
// ==UserScript==
// @name StyleGoogleCalendar
// @namespace https://pieinsurance.com/
// @version 0.1
// @description make meeting responses more distinct
// @author Gregory Seidman
// @match https://calendar.google.com/calendar/*
// @icon https://www.google.com/s2/favicons?domain=google.com
// @grant GM_addStyle
// ==/UserScript==
(function() {
'use strict';
GM_addStyle(`
.EfQccc.Epw9Dc {
opacity: 0.6;
}
`);
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment