Skip to content

Instantly share code, notes, and snippets.

@MicahZoltu
Last active April 7, 2026 12:26
Show Gist options
  • Select an option

  • Save MicahZoltu/ca57ef19adcbce1391d863eef26f867b to your computer and use it in GitHub Desktop.

Select an option

Save MicahZoltu/ca57ef19adcbce1391d863eef26f867b to your computer and use it in GitHub Desktop.
GitHub Widescreen Boookmarklet
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); })()
// 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