Skip to content

Instantly share code, notes, and snippets.

@GodSaveEarth
Created December 14, 2019 16:03
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 GodSaveEarth/c06c2ab22c814c0d5a833591438aa76e to your computer and use it in GitHub Desktop.
Save GodSaveEarth/c06c2ab22c814c0d5a833591438aa76e to your computer and use it in GitHub Desktop.
Add all public calendars to your Google calendar
// go to Add calendar -> Browse calendars of interest
// and execute in console
divs = document.querySelectorAll("div[role=checkbox][aria-checked=false]")
[].forEach.call(divs, function(div) {
div.click()
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment