Google Chrome extensions using manifest_version: 2 are restricted from using eval or new Function. All of the JavaScript templating libraries I checked (mustachejs, underscorejs, jQuery template, hoganjs, etc) use new Function. Are there any that are fairly mature and supported that don't use either?
|
|
|||
|
|
|
It turns out that mustachejs added I opened an issue to potentially get |
|||
|
|
It doesn't appear that Pure uses either |
|||
|
|
Closure Templates is a templating library that does not use |
|||
|
|
|
The answers here are outdated so I post an update. Since September, Google changed their policy and allowed So libraries using |
|||
|
|
|
It really depends on what you mean by "template library". If you just want string interpolation, there's no need for A few months ago I wrote a
An example template:
The base |
|||
|
|
|
Maybe you can write a function eval1:
and do a find/replace in the library you want, but that'd be cheating, right? |
|||
|
|
|
I recently run into the same problem. After updating manifest version my extension stopped working. I tried Mustache but it unable to render index of the array and names of the object properties. So I had to create my own simple but effective templating library Ashe which is free of |
|||
|
|
|
The best solution to this problem is to pre-compile your templates before you deploy your extension. Both handlebarsjs and eco offer pre-compilation as a feature. I actually wrote a blog post that goes into more depth. |
|||
|
|