mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-22 09:57:02 +01:00
ef9d5d117b
Co-authored-by: ryanml <ryanlanese@gmail.com>
10 lines
550 B
Markdown
10 lines
550 B
Markdown
# Secret Preferences
|
|
|
|
Sometimes we want to test a feature in the wild that may not be ready for public consumption.
|
|
|
|
One example is our "sync with mobile" feature, which didn't make sense to roll out before the mobile version was live.
|
|
|
|
To enable features like this, first open the background console, and then you can use the global method `global.setPreference(key, value)`.
|
|
|
|
For example, if the feature flag was a boolean was called `useNativeCurrencyAsPrimaryCurrency`, you might type `setPreference('useNativeCurrencyAsPrimaryCurrency', true)`.
|