1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-09-29 04:17:41 +02:00

remove _execute_sidebar_action for chrome and edge

This commit is contained in:
Kyle Spearrin 2017-12-04 09:15:28 -05:00
parent 61fb18ec4b
commit 6cc78f5b9b

View File

@ -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))