DEV Community

Miller Correa
Miller Correa

Posted on • Updated on

Tricks Chrome

In chrome you can move the current tab to the right with the key combination:

Ctrl + shift + Page Down

And to move to the left you can use:

Ctrl + shift + Page Up

This can improve your productivity by having the tabs you use organized.

Edit web page like a word

Put in developers tools:

document.designMode = 'on'
Enter fullscreen mode Exit fullscreen mode

for off this

document.designMode = 'off'
Enter fullscreen mode Exit fullscreen mode

Shorcuts for Extensions

You can customize the shorcuts to make faster use of the extensions you have installed in your browser. Just go to:

chrome://extensions/shortcuts

Devtools Avanzado

Puede usar la paleta de comandos de las DevTools para acceder mas rapido a las herramientas, primero abra las Devtools y luego presione la combinacion:

Ctrl + shift + P

Top comments (0)