Files
auto-archiver-extension/source/js/options-storage.js
2023-03-07 22:29:32 +00:00

14 lines
237 B
JavaScript

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