Created
December 14, 2019 16:03
-
-
Save GodSaveEarth/c06c2ab22c814c0d5a833591438aa76e to your computer and use it in GitHub Desktop.
Add all public calendars to your Google calendar
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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