For the development of the App's UI is often needed to check the browser inspector/console developer tools.
Tauri support that by right-click in the app and select "inspect element". If we need to use that multiple times while implementing some feature it became tedious and a waste of time.
We should have a way to open the dev tools automatically or using a global shortcut.
- automatically - we need to update the Rust main to (conditionally) startup the UI with the dev tools opened, and add startup scripts
- global shortcut - we need to update Rust main with a global shortcut to open/close the dev tools
For the development of the App's UI is often needed to check the browser inspector/console developer tools.
Tauri support that by right-click in the app and select "inspect element". If we need to use that multiple times while implementing some feature it became tedious and a waste of time.
We should have a way to open the dev tools automatically or using a global shortcut.