@brainblasted Do you know what a bookmarklet is? It's a tiny javascript that you can add to your bookmarks at the top of the page. Instead of having an URL in the target, you add this script.
If you click on the link, it will find all password fields on the page and turn it into a regular input field to make the content visible. It is harmless and has no impact on the workings of the page
```
javascript:(function(){
document.querySelectorAll('input[type="password"]').forEach(el => el.type = 'text');})()
```
@thaodan @brainblasted only when it's opened in a new tab or window. That's normal behaviour. Sometimes search-engine let you choose whether or not to open a result in a new tab or stay in the same tab.
I do sometimes see behaviour where you can click around between e.g. photos in an article where the back-button goes back to the previous image, instead of to the previous article. In that case I really wish they didn't do that