Last active
June 28, 2022 23:32
-
-
Save zlovatt/3bb1555e399cf7e88eadcd61ee61f8b4 to your computer and use it in GitHub Desktop.
Hide Gifs in Google Slides Sidebar Bookmarklet
This file contains 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
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)})() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I didn't write this! Was shared my way, posting for sharing elsewhere.