mirror of
https://github.com/bellingcat/auto-archiver-extension.git
synced 2026-06-08 03:28:34 +03:00
14 lines
237 B
JavaScript
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"
|
|
});
|