index.js ファイルで window.localStorage をオーバーライドする代わりに、lib/HTML5/ControlUtils.js を変更して、_storePreference および _getPreference 関数の動作を変更できます。localStorage (Chrome アプリでは使用できません) を使用する代わりに、Google のストレージ API https://developer.chrome.com/extensions/storage ieを使用できます。
_storePreference: function(key, value) {
chrome.storage.local.set({key: JSON.stringify(value)});
}
必要に応じて、config.js ファイルでこれらの関数をオーバーライドできます。
window.ControlUtils.userPreferences._storePreference = function(key, value) {
chrome.storage.local.set({key: JSON.stringify(value)});
}