Skip to content

Instantly share code, notes, and snippets.

@fabiofidanza
Last active December 11, 2023 16:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fabiofidanza/a36a387b08e85d8a7b48ef038232f553 to your computer and use it in GitHub Desktop.
Save fabiofidanza/a36a387b08e85d8a7b48ef038232f553 to your computer and use it in GitHub Desktop.
ZziMia™ — Hide your events title from your Google Calendar when you have to share your availability with other folks
let link = document.createElement('link');
link.href = "https://fonts.googleapis.com/css2?family=Redacted+Script:wght@700&display=swap";
link.rel="stylesheet";
document.body.appendChild(link);
document.querySelectorAll('*[data-eventchip]').forEach( (e) => {
e.style.fontFamily = "Redacted Script";
e.style.fontWeight = "700";
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment