From 6cc78f5b9b99bb71eb504845b935f72b8e150f51 Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Mon, 4 Dec 2017 09:15:28 -0500 Subject: [PATCH] remove _execute_sidebar_action for chrome and edge --- gulpfile.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/gulpfile.js b/gulpfile.js index 95c987f72e..e6f44276ef 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -70,6 +70,7 @@ gulp.task('dist:chrome', (cb) => { delete manifest['-ms-preload']; delete manifest.applications; delete manifest.sidebar_action; + delete manifest.commands._execute_sidebar_action; return manifest; }); }); @@ -102,6 +103,7 @@ function edgeCopyBuild(source, dest) { .pipe(gulpif('manifest.json', jeditor((manifest) => { delete manifest.applications; delete manifest.sidebar_action; + delete manifest.commands._execute_sidebar_action; return manifest; }))) .pipe(gulp.dest(dest))