I’d love to develop Google Chrome Extension. But currently I don’t know any framework to work with. I found the “Session Buddy” is one of very well structured extensions. I think it must be developed by specific framework (because it’s very well structured, and encoded).
Anyone know what framework does the author of Session Buddy use to develop this extension? Here is the url: https://chrome.google.com/webstore/detail/edacconmaakjimmfgnblocblbcdcpbko?hl=en-US
Moreover what other frameworks do you use to create chrome extension? Does it support unit test?
Thanks for your answers,
The current version of Session Buddy (v3.0.9) is coded in pure JavaScript, with the exception that it uses MooTools for internationalization of dates and ordinals (I’m currently exploring alternatives to that though, so this may be replaced in favor of a different library in a future release). The code obfuscation is achieved through a simple js parser I built using C#.
-Hans (Session Buddy developer)
Addendum: I should add (because you mention the code structure) that I pass the code through Google’s Closure Compiler with a compilation level of WHITESPACE_ONLY.