diff --git a/source/background/setup.ts b/source/background/setup.ts index 3fe75ff..1d2c07c 100644 --- a/source/background/setup.ts +++ b/source/background/setup.ts @@ -4,6 +4,8 @@ import browser from "webextension-polyfill"; +import {runMigrations} from "../migrations/migrations.js"; + import { clearHistory, openNextItemOrOptionsPage, @@ -30,6 +32,7 @@ browser.runtime.onStartup.addListener(async () => { }); browser.runtime.onInstalled.addListener(async () => { + await runMigrations(); await initializeContextMenus(); await setBadgeText();