If you disable pasting in your password field, I hate you. I hate you even more if you don't have a "show password" button so I can verify that I'm typing my password correctly since you won't let me paste

@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');})()
```

@haayman @brainblasted Wish there was something like this but for websites rewriting the browser navigation history.
@thaodan @brainblasted i don't think so, but van you give an example where it's bothering you?
@haayman @brainblasted Ever clicked on a link and couldn't go back anymore? Like when following a search result.

@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

@haayman @brainblasted I happens frequently when opening them in the same tab to me.