解决方法
- 浏览器打开 Steam偏好设置
- 登入账号后
F12打开开发者工具转到控制台输入
document.querySelectorAll('.preference_row.account_setting_not_customer_facing ').forEach(i => i.classList.remove("account_setting_not_customer_facing"));

- 回车后会看到多出来四个复选框,勾选即可


F12 打开 开发者工具 转到 控制台 输入document.querySelectorAll('.preference_row.account_setting_not_customer_facing ').forEach(i => i.classList.remove("account_setting_not_customer_facing"));

