Created
June 19, 2021 11:22
-
-
Save ThoundsN/3c6a3317bdfa10643a465a688912f280 to your computer and use it in GitHub Desktop.
Remove gif in medium
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
var elements = document.getElementsByTagName("iframe"); | |
while (elements.length) { | |
elements[0].parentNode.removeChild(elements[0]); | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment