Recently, I found a chrome extension Session Buddy. I want to study the js code of this extension. But the variables in the css and js file constructed only by l and I. The code is unreadable.
So I Google to find some tools change the js code unreadable. but failed.
- I want to know Which tools can do this.
- and I want to know if there is a tools can guess the origin file (some popular js library)?
The code was most likely minified (which decreases the file size, as well as makes it unreadable). You can use this site to minify your code: http://dean.edwards.name/packer/
You can check the Base62 Encode option to obfuscate the code further.
In order to make minified code more readable, use a Javascript beautifier: http://jsbeautifier.org/