Skip to content

Instantly share code, notes, and snippets.

@aolney
Created July 22, 2026 17:17
Show Gist options
  • Select an option

  • Save aolney/bca01c974bf7a5cadf470af65a8e11e8 to your computer and use it in GitHub Desktop.

Select an option

Save aolney/bca01c974bf7a5cadf470af65a8e11e8 to your computer and use it in GitHub Desktop.
Google finance beta increase plot height
/* Force the outer container to 500px */
.LpEgVb.LO3Qbb {
height: 500px !important;
}
@aolney

aolney commented Jul 22, 2026

Copy link
Copy Markdown
Author

Example bookmarklet.

  1. Create a browser bookmark with this code in place of URL
  2. Visit Google finance in the normal way
  3. While on that page, click bookmark once in the normal way to restyle plot
javascript:(function(){
  fetch('https://gist.githubusercontent.com/aolney/bca01c974bf7a5cadf470af65a8e11e8/raw/4a67a8c92a16286b6d8ab6aa47c6fcc300a139b7/gbeta_plotheight.css')
    .then(response => response.text())
    .then(css => {
      var style = document.createElement('style');
      style.appendChild(document.createTextNode(css));
      document.head.appendChild(style);
    });
})();

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment