I'm trying to add some features to a third-party chrome addon that injects code into an existing website. This code is inline (i.e. not an external javascript file) and is minified. I want to insert some break points in the code to work out what is going on.
There are lots of ways to beauitfy minified script files (also this)
Is there a way to beautify <script>
tags in an html file?
Research so far
- There is this bug in firefox about the issue.
Alternatives
I admitted defeat on this approach for the moment and am trying editing the extension following this question for expansion and this question for command line beautification I'm not sure this will be too relevant for other readers though...