aboutsummaryrefslogtreecommitdiff
path: root/chromium-profile
diff options
context:
space:
mode:
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