using Builder online tool
https://builder.addons.mozilla.org/
to build and test my extension
now that I want to store data locally I’m following this tutorial
https://developer.mozilla.org/en/Storage
but the code snippets are not working for me
Should I be developing them locally using the classic SDK or is there a way to add SQLite support to the Add-on builder ?
using Builder online tool https://builder.addons.mozilla.org/ to build and test my extension now that I
Share
Add-on SDK is sandboxed by default and doesn’t provide direct access to XPCOM. To use XPCOM objects you need to break out of the sandbox:
Note that
Componentsstays undefined – useCcinstead ofComponents.classes,Ciinstead ofComponents.interfacesandCuinstead ofComponents.utils.