Linux 上 Chrome 的高 DPI 设置

Linux 上 Chrome 的高 DPI 设置

在 Firefox 的高分辨率屏幕上,您可以设置about:config

layout.css.devPixelsPerPx=2

因此 Firefox 中的所有内容都是双倍大小。

chrome 浏览器也有这样的设置吗?

答案1

我在 Linux 中使用google-chrome,对我有用的是编辑启动器,以便它传递命令行参数--force-device-scale-factor=2

例如在 /usr/bin/google-chrome-stable

# ...
# Make sure that the profile directory specified in the environment, if any,
# overrides the default.
if [[ -n "$CHROME_USER_DATA_DIR" ]]; then
  # Note: exec -a below is a bashism.
  exec -a "$0" "$HERE/chrome"  \
    --force-device-scale-factor=2 \
    --user-data-dir="$CHROME_USER_DATA_DIR" "$@"
else
  exec -a "$0" "$HERE/chrome" \
    --force-device-scale-factor=2 \
    "$@"
fi

Ubuntu 16.04 中的 Chrome UI 大小和缩放级别

相关内容