From 88446ec9c99300661b9edb94d82557be5e66c8e7 Mon Sep 17 00:00:00 2001 From: Silvio Rhatto Date: Sun, 7 Jan 2018 11:19:19 -0200 Subject: Adds --site-per-process into chromium wrappers --- chromium-profile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'chromium-profile') 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 -- cgit v1.2.3