Last active
April 7, 2026 12:26
-
-
Save MicahZoltu/ca57ef19adcbce1391d863eef26f867b to your computer and use it in GitHub Desktop.
GitHub Widescreen Boookmarklet
This file contains hidden or 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() { const style = document.createElement('style'); style.id = 'injected-css'; style.innerText = `[class^="InlineMarkers-module__markersWrapper__"] { max-height: none !important; max-width: none !important; }`; document.head.appendChild(style); })() |
This file contains hidden or 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
| // original | |
| function() | |
| { | |
| const style = document.createElement('style'); | |
| style.id = 'injected-css'; | |
| style.innerText = ` | |
| [class^="InlineMarkers-module__markersWrapper__"] { | |
| max-height: none !important; | |
| max-width: none !important; | |
| }`; | |
| document.head.appendChild(style); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment