Skip to content

Instantly share code, notes, and snippets.

@schalkneethling
Created May 16, 2016 15:08
Show Gist options
  • Save schalkneethling/dd8b76381c94d3e813e3b5e43246f59d to your computer and use it in GitHub Desktop.
Save schalkneethling/dd8b76381c94d3e813e3b5e43246f59d to your computer and use it in GitHub Desktop.
How to set the size of a built in Sidebar element in Firefox add-ons
var activeWindow = utils.getMostRecentBrowserWindow();
var _sidebar = activeWindow.document.getElementById('sidebar');
_sidebar.style.width = '320px';
_sidebar.style.maxWidth = '320px';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment