Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How dock the developer tools in the Vivaldi web browser?

When I open the developer tools I get the familiar tools, but they are in their own window.

How can I dock them to the bottom of the window?

like image 728
Sergio Tapia Avatar asked Apr 22 '16 05:04

Sergio Tapia


People also ask

What is browser developer options?

Developer tools are built directly into the browser. These are the tools that are browser dependent. Most of these tools are common among various browsers and do a range of things, from inspecting elements of a currently-loaded HTML, CSS, and JavaScript.

How do I open the developer tool Opera?

For Mac users, to open developer tools, select View > Show Developer Menu. A new submenu called Developer will appear on the menu bar. To use the tools, select Developer > Developer Tools. For Windows and Linux users, to open developer tools, go to O Menu > Developer > Developer Tools.


3 Answers

It's possible since Vivaldi snapshot 1.10:

https://vivaldi.com/blog/snapshots/docked-developer-tools-vivaldi-browser-snapshot-1-10-829-3/


Docked Developer Tools We have had a long standing request for the ability to dock Developer Tools. Well, wait no longer, we are introducing this handy feature in our very first 1.10 snapshot. All of you developers who desperately wanted this, can now breathe a sigh of relief. Of course, if you prefer them undocked, that still works too!

enter image description here

like image 158
pmros Avatar answered Sep 29 '22 22:09

pmros


It's still not possible however, there are two possibilities.

First, use VivaldiHooks with their devtool.js hook ( this allows you to dock the devtools doing a right-click in the page and selecting [ DevTools at the right / DevTools at the bottom ] )

Or, running vivaldi with a set port for remote debugging such as:

vivaldi --remote-debugging-port=X # X being a port, e.g: 9222

And opening a web panel at:

localhost:X # X being a port, e.g: 9222

I prefer the latter since it's less glitchy, while the first sometimes "eats" part of the window.innerHeight of the window being inspected.

like image 22
joaumg Avatar answered Sep 29 '22 21:09

joaumg


It's not possible at the moment.

You can read more about this issue in Vivaldi's community forum

like image 29
Yago Riveiro Avatar answered Sep 29 '22 21:09

Yago Riveiro