aboutsummaryrefslogtreecommitdiff
path: root/chromium-profile
diff options
context:
space:
mode:
authorSilvio Rhatto <rhatto@riseup.net>2018-01-07 11:19:19 -0200
committerSilvio Rhatto <rhatto@riseup.net>2018-01-07 11:19:19 -0200
commit88446ec9c99300661b9edb94d82557be5e66c8e7 (patch)
tree371901cd5132606e793e4e8d370ef1edc4d691a2 /chromium-profile
parentf42f9aecdb381b376737e59e20fff01fb04f38bf (diff)
downloadutils-x11-88446ec9c99300661b9edb94d82557be5e66c8e7.tar.gz
utils-x11-88446ec9c99300661b9edb94d82557be5e66c8e7.tar.bz2
Adds --site-per-process into chromium wrappers
Diffstat (limited to 'chromium-profile')
-rwxr-xr-xchromium-profile3
1 files changed, 2 insertions, 1 deletions
diff --git a/chromium-profile b/chromium-profile
index 5587825..07c7428 100755
--- a/chromium-profile
+++ b/chromium-profile
@@ -2,6 +2,7 @@
# Wrapper around chromium to enable extensions
# See https://wiki.debian.org/Chromium#Extensions
# https://www.chromium.org/developers/creating-and-using-profiles
+# https://www.chromium.org/Home/chromium-security/site-isolation
# Check
if [ -z "$1" ]; then
@@ -15,5 +16,5 @@ if which chromium 2> /dev/null; then
mkdir -p "$PROFILE"
shift
- CHROMIUM_FLAGS="$CHROMIUM_FLAGS --enable-remote-extensions" chromium --user-data-dir="$PROFILE" $*
+ CHROMIUM_FLAGS="$CHROMIUM_FLAGS --site-per-process --enable-remote-extensions" chromium --user-data-dir="$PROFILE" $*
fi