Chromium 提供了几种在全新配置文件中预加载书签、扩展程序和其他设置的方法。其中一种方法是使用master_preferences
文件。
https://www.chromium.org/administrators/pre-installed-extensions
https://www.chromium.org/administrators/configuring-other-preferences
在 Linux 上,此文件通常位于/etc/chromium/master_preferences
或,/usr/lib/chromium/master_preferences
并在启动没有现有配置文件的 Chromium 时读取(例如chromium-browser --user-data-dir=~/new_profile
)。这曾经有效(据我所知使用 Chromium 的 .deb 安装),但现在我无法让它工作。
我感觉这是因为新的 Snap 容器有自己的沙盒文件系统,而且作为只读文件系统,我无法简单地将此首选项文件放入容器中。Ubuntu 的 snap chromium 是否已配置为master_preferences
从其他地方读取?还有其他方法可以让此首选项文件正常工作吗?
这是一个示例master_preferences
,应将 Google 设置为主页并在 UI 中添加“主页”按钮。
{
"homepage": "https://google.com",
"homepage_is_newtabpage": false
}