Skip to content

Instantly share code, notes, and snippets.

@rvagg
Created June 27, 2016 23:06
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rvagg/3e5d2ac20ad64e522df874af7a71d127 to your computer and use it in GitHub Desktop.
Save rvagg/3e5d2ac20ad64e522df874af7a71d127 to your computer and use it in GitHub Desktop.
Bookmark to sanitize Google Calendar view for screenshotting
javascript:[].forEach.call(document.querySelectorAll('.evt-lk,.cbrdcc,.cloc'), (e) => e.innerHTML = ''); [].forEach.call(document.querySelectorAll('.cbrd, .rb-n'), (e) => { e.style.backgroundColor = '#9ea0ff'; e.style.borderColor = '#3d40d9'; e.style.color = '#1d1d1d' }); [].forEach.call(document.querySelectorAll('.rb-ni > div'), (e) => e.style.borderColor = 'transparent #9ea0ff'); [].forEach.call(document.querySelectorAll('.cbrd .mask'), (e) => e.parentNode.removeChild(e)); void(0)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment