From 09ed57fb7020c9f281d3864c9c740ebb4dc83778 Mon Sep 17 00:00:00 2001 From: magnolia1234 <7676006-magnolia1234@users.noreply.gitlab.com> Date: Wed, 15 Jul 2020 21:49:16 +0200 Subject: [PATCH] Open options on update (or reload) --- background.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/background.js b/background.js index 8cd7f5e8..809b4872 100644 --- a/background.js +++ b/background.js @@ -317,7 +317,7 @@ ext_api.runtime.onInstalled.addListener(function (details) { if (details.reason == "install") { setDefaultOptions(); } else if (details.reason == "update") { - // User updated extension + setDefaultOptions(); // User updated extension } });