Skip to content Skip to sidebar Skip to footer

Are Chrome Apps Code Visible To The Users?

I was thinking about writing a chrome app in html5. This would be an app on the desktop for the user to use, independent of the internet. However, the concern is what if there are

Solution 1:

No, it's not possible to hide your code. You can obfuscate and minimize it, but that is about it.

If you have proprietary algorithms you're protective of, you can always leave them on a server and use XHR to execute them there. Or you could use native client to have a portion of your app written in C and compiled to a low level intermediate language (portable NaCl, which is preferred), or machine code (NaCl).

Note all native apps have this problem; machine code can also be reverse engineered. Its just easier with HTML / javascript.

Post a Comment for "Are Chrome Apps Code Visible To The Users?"