CredentialsContainer get() 方法不再过滤密码类型凭证
我有几个应用程序托管在不同的子域上。每个应用程序彼此之间不共享登录凭据。 例如 app1.example.com-用户名:test1,密码:test app2.example.com-用户名:test2,密码:test app3.example.com-用户名:test3,密码:test 因此我通过 CredentialsContainer 为 Chrome 用户实现了一种登录方法:得到()方法如下: await navigator.credentials.get({ password: true }) 直到 Chrome v116 版本,在调用 ge...