Customizing Chrome preferences #964
-
Hi I'm wanting to customize the Chrome instance e.g. open the dock on the bottom - how would I do this if possible with WXT? Thanks. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 2 replies
-
You can customize any setting in your profile's
The other option is to pass CLI flags: https://wxt.dev/api/reference/wxt/interfaces/ExtensionRunnerConfig.html#chromiumargs I don't know which of these options you should use for your case. Or maybe neither will work and there's not a way to configure what you're trying to do 🤷 chrome isn't very good at allowing customization on startup |
Beta Was this translation helpful? Give feedback.
-
Thanks. Both nested and flat work (although chromiumPref is expecting a string). |
Beta Was this translation helpful? Give feedback.
You can customize any setting in your profile's
Preferences
file (/path/to/profile/Preferences
) via: https://wxt.dev/api/reference/wxt/interfaces/ExtensionRunnerConfig.html#chromiumprefThe other option is to pass CLI flags: https://wxt.dev/api/reference/wxt/interfaces/ExtensionRunnerConfig.html#chromiumargs
I don't know which of these options you should use for your case. Or maybe neither will work and there's not a way to configure what you're trying to do 🤷 chrome isn't very good at all…