If you have *nix terminal you can use this:It not a big deal. However I am a data hoarder and my 17TB NAS needs a bit of an upgrade. Until i get more storage I have to be a bit selective in what i save which means i want to be able to see the uncoded links. I dont check the fourm everyday so that could easily be a couple of links spanning pages. it is easy to lose track of which page/link/password is to which zip file. It is easier to just translate the base64 on page like a google translate. I could make one but im not familiar with JS so it would take a while.
Bash:
xclip -o -selection clipboard | tr -d ' ' | base64 -d | xclip -i -selection clipboard
The snippet just decodes what in the clipboard at the moment and puts it back there. I was too lazy to write something as a plugin, so I use this oneliner. Hope this helps

