DEV Community

S I D D A R T H
S I D D A R T H

Posted on • Originally published at Medium on

Inspect tool is crazy !!

Inspect tool is crazy !!

I hope you guys doing good, my writing isn’t good as a professional writer. I hope you guys get along with me throughout this blog. (29/03/2025)

Do you know, you can actually see the password in the browser that is shown as ***** !?

Well you have came through lot of these, where you have forgot the password hopefully you saved in browser password manager but you still need it to login in another device. Dramatically the “show password icon” is also disabled in your login site. Uffff…. well i got a solution where you can see the password, that’s simple. Select the password and inspect it, in inspect tab you can notice that something like type = password simply change it to type = text. It changes from **** → text.

Do you know you can easily edit the website you visit, easily without inspecting each part and more..

Press ‘Ctrl+Shift+I’ and navigate to console tab, and type this

For Dynamic Editing-

document.body.contentEditable = true;
Enter fullscreen mode Exit fullscreen mode

For Making images up-side down-

document.querySelectorAll('img').forEach(img => img.style.transform = 'rotate(180deg)');
Enter fullscreen mode Exit fullscreen mode

You can also automate java script working on web pages easily by creating a bookmark and instead of inserting link on that paste you js.

Bypass Right-Click Block (on Protected Sites) — Use Case: Some sites block right-click & text selection. Open Console (F12 > Console Tab). Paste this and hit Enter:

document.oncontextmenu = null;
document.onselectstart = null;
document.onmousedown = null;
Enter fullscreen mode Exit fullscreen mode

To be continued. Excepted next update at (30/03/2025).

Top comments (0)