I am trying to use micro template engine in chrome extension and getting the following error : Uncaught Error: Code generation from strings disallowed for this context
Uncaught Error: Code generation from strings disallowed for this context
Try replacing all instances of "new Function" by "function(){}" it made my socket.io.js work.
"new Function"
"function(){}"