Files
auto-archiver-extension/source/js/options-storage.js
2023-02-26 20:22:37 +01:00

14 lines
240 B
JavaScript

import OptionsSync from 'webext-options-sync';
export default new OptionsSync({
defaults: {
archivedUrls: {},
errorMessage: ""
},
migrations: [
// OptionsSync.migrations.removeUnused,
],
logging: true,
storageType: "local"
});