mirror of
https://github.com/bellingcat/auto-archiver-extension.git
synced 2026-06-07 19:18:33 +03:00
12 lines
197 B
JavaScript
12 lines
197 B
JavaScript
import OptionsSync from 'webext-options-sync';
|
|
|
|
export default new OptionsSync({
|
|
defaults: {
|
|
archived_urls: {},
|
|
},
|
|
migrations: [
|
|
OptionsSync.migrations.removeUnused,
|
|
],
|
|
logging: true,
|
|
});
|