我想在启动chrome时启用标志(enable-token-binding)。 我可以使用chrome:// flags页面来做到这一点。但是对于运行测试,我需要从命令行执行此操作。
我试过
chrome --enable-features = token-binding
chrome --enable-token-binding
他们都没有奏效。
答案 0 :(得分:4)
命令行/ Applications / Google Chrome.app/Contents/MacOS/Google Chrome --enable-audio-service-sandbox -flag-switches-begin --enable-features = CookiesWithoutSameSiteMustBeSecure,SameSiteByDefaultCookies --flag -switches-end --enable-audio-service-sandbox
使用所有参数运行上述命令,您的chrome实例将具有所有设置。
答案 1 :(得分:0)
尝试--flag-switches-begin --enable-token-binding --flag-switches-end
。
模式是--flag-switches
的开始和结束,为标志加盖。然后,将标记的名称作为参数提供,并在其前面加上--
。
答案 2 :(得分:0)
在Chrome版本70中删除了令牌绑定
请参阅https://www.chromestatus.com/feature/5097603234529280
mayankSinha的答案适用于他提到的标志。不过请注意已更改的命名约定:“小写字母除以-”约定已更改为CamelCase。
即same-site-by-default-cookies(如chrome:// flags中所示)变为SameSiteByDefaultCookies