blob: 28c233ac414a2f360f0ec312ee6d19ae0e055d33 [file] [log] [blame]
const defaultOptions = {
'list': true,
'thread': true,
'threadall': false,
'fixedtoolbar': false,
'redirect': false,
'history': false,
'loaddrafts': false,
'batchduplicate': false,
'escalatethreads': false,
'movethreads': false,
'increasecontrast': false,
'stickysidebarheaders': false,
'profileindicator': false,
};
const deprecatedOptions = [
'escalatethreads',
'movethreads',
'batchduplicate',
];
function isEmpty(obj) {
return Object.keys(obj).length === 0;
}
function cleanUpOptions(options) {
console.log('[cleanUpOptions] Previous options', options);
var ok = true;
for (const [opt, value] of Object.entries(defaultOptions)) {
if (!(opt in options)) {
ok = false;
options[opt] = value;
}
}
console.log('[cleanUpOptions] New options', options);
if (!ok) {
chrome.storage.sync.set(options);
}
return options;
}