localforage の作成者は Firefox アドオンをサポートするつもりはありませんが、それが不可能だというわけではありません。関連する問題は次のとおりです: https://github.com/mozilla/localForage/issues/584
localforage 用のカスタム ドライバーを作成できます: https://github.com/mozilla/localForage/pull/282
またはdist/localforage.min.js
、アドオンに含める前に、ファイルの先頭に次のコードを追加します。
/**
* Detect Firefox SDK Addon environment and prepare some globals
*
* @author Dumitru Uzun (DUzun.Me)
*/
(function (window, undefined) {
if (typeof exports != "object" || typeof module == "undefined") return;
if ( window && window.Array === Array ) try {
window.window = window;
// Timers
if ( typeof setTimeout == 'undefined' ) {
expo(
require("sdk/timers")
, [
'setTimeout' , 'clearTimeout',
'setImmediate', 'clearImmediate'
]
);
}
// Blob, FileReader
var Cu = require("chrome").Cu;
var Services = Cu['import']("resource://gre/modules/Services.jsm", {});
expo(
Services
, ['Blob', 'FileReader']
);
expo(
Services.appShell && Services.appShell.hiddenDOMWindow
, ['Blob', 'FileReader']
);
// IndexedDB
expo(require('sdk/indexed-db'));
} catch(err) {
console.log('error', err);
}
function expo(ctx, props) {
if ( !ctx ) return;
if ( !props ) props = Object.keys(ctx);
for(var i=props.length,p; i--;) {
p = props[i];
if ( ctx[p] != undefined && !(p in window) ) {
window[p] = ctx[p];
}
}
return ctx;
}
}(this));