将 Chrome 更新到 72 版后,我的扩展程序不再工作。它曾经在版本 71 上工作。我的扩展程序发送请求以获取同一网站内的一些数据。
xmlhttp.open("GET", "/gym/combo/incident?id=" + incidentId + "&lockerEntity=widget_group", true);
xmlhttp.send();
但是由于跨域读取阻塞,Chrome 阻止了响应。警告信息如下:
Cross-Origin Read Blocking (CORB) blocked cross-origin response https://example.com/gym/combo/incident?id=6418e9fc-9176-4c82-b6ea-455551a9b53e&lockerEntity=widget_group with MIME type application/json. See https://www.chromestatus.com/feature/5629709824032768 for more details
当脚本向同一站点发出请求时,我不明白为什么它是跨域的。这可能是一个错误吗?