From 4e5683c45e6f75a7dafe1907011a421bbf38c840 Mon Sep 17 00:00:00 2001 From: abhijithvijayan <34790378+abhijithvijayan@users.noreply.github.com> Date: Wed, 30 Oct 2019 22:07:07 +0530 Subject: [PATCH] fix: add missing scripts field in manifest --- src/manifest/index.js | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/manifest/index.js b/src/manifest/index.js index 7d8b464..3917f85 100644 --- a/src/manifest/index.js +++ b/src/manifest/index.js @@ -51,6 +51,11 @@ const manifestInput = { open_in_tab: true, __chrome__chrome_style: false, }, + + background: { + scripts: ['js/background.bundle.js'], + '__chrome|opera__persistent': false, + }, }; module.exports = manifestInput;