我想知道是否有办法在 Chrome 中查询以下权限:accelerometercameraclipboard-readclipboard-writegeolocationbackground-syncmagnetometermicrophonemidinotificationspayment-handlerpersistent-storage谢谢你。
1 回答
慕哥6287543
TA贡献1831条经验 获得超10个赞
您可以使用navigator.permissions
以下是“地理位置”的示例:
navigator.permissions.query({name:'geolocation'}).then(function(result) {
if (result.state == 'granted') {
showLocalNewsWithGeolocation();
} else if (result.state == 'prompt') {
showButtonToEnableLocalNews();
}
// Don't do anything if the permission was denied.
});
你可以从这里阅读更多。
添加回答
举报
0/150
提交
取消