Created
March 30, 2023 10:55
-
-
Save kanonji/0b2fa1c6b9488cc65dcb5aff48070f9c to your computer and use it in GitHub Desktop.
GitHubのissueにて埋め込みコードの縦幅を広げるbookmarklet "Expand embedded height"
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(){Array.from(document.getElementsByClassName("blob-wrapper-embedded")).forEach(e=>{e.style.maxHeight="initial"});})(); |
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
(function(){ | |
Array.from(document.getElementsByClassName('blob-wrapper-embedded')).forEach(elem => { | |
elem.style.maxHeight = 'initial' | |
}) | |
})() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment