Skip to content

Instantly share code, notes, and snippets.

@eeddaann
Last active October 3, 2017 17:50
Show Gist options
  • Save eeddaann/7b2e236b8c1a43b6d5fe4e4aa6cc2801 to your computer and use it in GitHub Desktop.
Save eeddaann/7b2e236b8c1a43b6d5fe4e4aa6cc2801 to your computer and use it in GitHub Desktop.

add scrollbar to firefox RESTClient

this gist guides how to adds a scrollbar to the following addon: (or any other css patching in firefox) https://addons.mozilla.org/en-US/firefox/addon/restclient/

  • go to about:support on firefox
  • choose Show Folder
  • look for chrome folder, if it is not exist, add folder and call it chrome
  • inside chrome folder, look for userContent.css add these lines or create file with this name and paste there:
.dropdown-menu.savedRequest{
  overflow: scroll;
  height: 600px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment