Is there a plugin, add-on, Greasemonkey script or something similar (at worst, an easy to use proxy?) that automatically unminifies the Javascript files included on a site?

I know about e.g. jsbeautifier.org but doing this externally doesn't allow me to set breakpoints in the unminified code, for example.

Typical use cases for me:

  • Analysing and learning from complex web frontends.
  • Debugging Greasemonkey scripts which interact with the existing code.

I'm primarily interested in a solution that works with Firebug, but if there's something for the dev tools of Chrome or Opera, I'd like to hear about it as well.

link|improve this question

1  
I dunno if it exists, but good idea :) – Ryley Nov 25 '10 at 17:35
feedback

6 Answers

up vote 23 down vote accepted
+150

Someone has integrated JSBeautifier into Firebug:

https://addons.mozilla.org/en-US/firefox/addon/javascript-deminifier/

This has made my day today!

link|improve this answer
I WANT TO UPVOTE THIS A MILLION TIMES. THANK YOU! (And thanks to Tim Stone for mentioning this answer to me!) – Josh Jan 28 '11 at 1:42
Oh that is beautiful. And surprisingly fast, much faster than the Fiddler solution. Can't believe I haven't found that before. – hheimbuerger Jan 28 '11 at 7:36
You're welcome : ) – B T Mar 1 '11 at 2:17
Unfortunately, this plugin is no longer maintained and does not work with Firefox 4. – skolima Jun 21 '11 at 12:55
Script has been updated to support 3.6-5.* – chauncey Aug 9 '11 at 18:03
feedback

In chrome 13+, there is 'pretty print'.

  1. Right click 'inspect element'
  2. Go to Script tab
  3. Click the curly braces in the bottom right.

Screenshot

link|improve this answer
feedback

Venkman JavaScript debugger has a pretty-printer.

There is also an extension for Fiddler proxy.

IE9 developer tools also have a "format javascript" option (see "F12 Developer Tools and Formatting Minified Script" here)

link|improve this answer
Fiddler works nicely. A bit slow, but that's what you have to expect when you're trying to unminify and reformat a big webapp. Not my preferred solution (would like to see direct Firebug integration), but this works. Thanks! – hheimbuerger Dec 4 '10 at 17:48
feedback

Is not possible with current tools. Show eval scripts is the most you can get. Jsbeautifier.org is nice open thing, and someone can integrate it info firebug.

link|improve this answer
feedback

If the script is only minified for whitespace, some of the solutions offered may work. As you mention, JSBeautifier is a useful tool.

However, if the JavaScript you're looking at has been compressed with a tool such as YUI Compressor or Google Closure Compiler, the variables are going to be shortened and harder to understand.

To see this in action, compare the minified and unminified versions of jQuery (minified version uses Closure Compiler).

For the goal of learning JavaScript, I recommend learning from libraries and plugins written by some of the best JavaScript developers out there. Look at the source code for jQuery, YUI, Moo Tools. Look at code on GitHub by people like John Resig or Thomas Fuchs. Read DailyJs and look at his examples.

I hope some of these tools help you in the process of learning. These are the resources that have helped me most.

link|improve this answer
1  
I don't care about a loss of variable names in this case, as long as I can set breakpoints. – hheimbuerger Dec 1 '10 at 10:21
feedback

Webkit/Chromium can now do this as well, see Webkit Bug 57942, Changeset 83713 and Peter Beverloo's change summary post mentioning this.

Don't ask me starting with which version of Chromium/Chrome this is available, but feel free to mention here if you do know. :)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.