通过命令行设置 Chromium 标签选项以启用“静音”

通过命令行设置 Chromium 标签选项以启用“静音”

Chromium 有很酷的选项。例如,我喜欢“静音”选项卡功能。可以通过图形方式启用此功能,方法是转到 chrome://flags,然后启用“启用选项卡音频静音 UI 控件”。

但是,如何通过命令行实现上述功能?Chromium 选项存储在哪里?在这种情况下如何操作?

我也对在命令行上设置其他 Chromium 选项感兴趣,但最感兴趣的是这个。

答案1

视窗:

# Change the path to match your Chrome or Chromium Installation
"C:\Program Files (x86)\Google\Chrome\Application\chrome.exe" --enable-tab-audio-muting

苹果:

# Chromium
# Change the path to match your Chrome or Chromium Installation
/Applications/Chromium.app/Contents/MacOS/Chromium --enable-tab-audio-muting`

# Google Chrome (with escaped spaces)
# Change the path to match your Chrome or Chromium Installation
/Applications/Google\ Chrome.app/Contents/MacOS/Google\ Chrome --enable-tab-audio-muting

Linux:

# Chromium
chromium-browser --enable-tab-audio-muting

# Google Chrome
google-chrome --enable-tab-audio-muting

这需要关闭所有其他窗口。

来源

可以通过命令行操作的开关

相关内容