Skip to content

Instantly share code, notes, and snippets.

@zlovatt
Last active June 28, 2022 23:32
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 zlovatt/3bb1555e399cf7e88eadcd61ee61f8b4 to your computer and use it in GitHub Desktop.
Save zlovatt/3bb1555e399cf7e88eadcd61ee61f8b4 to your computer and use it in GitHub Desktop.
Hide Gifs in Google Slides Sidebar Bookmarklet
javascript:(function(){var styleID="toggle-filmstrip-gifs";var style=document.getElementById(styleID);if(style){style.remove();return}var styleContent=document.createTextNode("#filmstrip%20svg%20:not(.sketchy-comment-indicator)%20>%20image%20{%20display:%20none%20!important;%20}");style=document.createElement("style");style.id=styleID;style.appendChild(styleContent);document.getElementsByTagName("head")[0].appendChild(style)})()
@zlovatt
Copy link
Author

zlovatt commented Jun 28, 2022

I didn't write this! Was shared my way, posting for sharing elsewhere.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment