Is there a String Escaping/Unescaping (Javascript) Plugin for Notepad++?
When looking at Javascript code, quite often quoted strings are used similar to the notation used in JSON, e.g. when looking at the source code generated by Googletagmanager, the complete javascript or html code I entered as tag definition shows up as encoded Javascript string. To debug this, it is useful to be able to decode the string. I currently do this with a perl script. but it would be better to have a plugin function in Notepad++ to do this directly.
E.g. convert "\x3cscript\x3ealert(\x22hello\x22);\x3c/script\x3e"
to
<script>alert("hello");</script>
The same would make sense the other way as encoding as well.