Update : this feature is now available and enabled by default in Firefox 67. You can disable it (are you crazy?) Using the flag devtools.netmonitor.features.resizeColumns .
Original answer : As you probably know, there is no way to resize a column (FF57 columns), the only option you have is to hide / show the columns. this is easy to do, just right-click on any column, you should see a list of columns and you can select / deselect them.
But what is this ?! no, you can resize the column (s) using CSS (hack developer tools), here are the steps:
- Open developer tools (using F12 or ...)
- Click on the gear button in the upper right corner
Check out these 2 options:
Enable browser chrome and add-on debugging toolboxesEnable remote debugging
Press Ctrl+Shift+Alt+I and click OK (when prompted for security) to open the browser toolbar.
- You should be able to inspect
Dev tools using the open Dev tools panel of your browser. - Play with
CSS (same as with a regular web page) - Save custom
CSS in userChrome.css file
Need more information about userChrome.css , head to userchrome.org
Here are the steps to create / modify userChrome.css :
- Open
about:support - Click "
Open Folder (in the line" Profile Folder ) - Open / Create
chrome directory - Open / Create
userChrome.css file - Do what I said in the first section
To demonstrate how this works, I changed the background color of one of the Network tab columns to red.

And here is my userChrome.css file of userChrome.css (for the example above)
.requests-list-file.requests-list-column { background-color: red !important; color: #fff !important; }
I used !important just for the sake of time, don't use this if you can
source share