blob: 221f061047810e99953013653b94349be9827c02 (
plain)
1
2
3
4
5
6
7
8
9
|
#
# Wrapper around chromium to enable extensions
# See https://wiki.debian.org/Chromium#Extensions
# https://www.chromium.org/Home/chromium-security/site-isolation
#
if which chromium 2> /dev/null; then
CHROMIUM_FLAGS="$CHROMIUM_FLAGS --site-per-process --enable-remote-extensions" chromium $*
fi
|