1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-12 06:13:38 +00: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['-ms-preload'];
delete manifest.applications; delete manifest.applications;
delete manifest.sidebar_action; delete manifest.sidebar_action;
delete manifest.commands._execute_sidebar_action;
return manifest; return manifest;
}); });
}); });
@@ -102,6 +103,7 @@ function edgeCopyBuild(source, dest) {
.pipe(gulpif('manifest.json', jeditor((manifest) => { .pipe(gulpif('manifest.json', jeditor((manifest) => {
delete manifest.applications; delete manifest.applications;
delete manifest.sidebar_action; delete manifest.sidebar_action;
delete manifest.commands._execute_sidebar_action;
return manifest; return manifest;
}))) })))
.pipe(gulp.dest(dest)) .pipe(gulp.dest(dest))