我正在开发一个chrome扩展程序,其中包含以下文件:
test.html
manifest.json
我们说扩展程序的标识为aaaaaaaaaaaaa
。
如果我导航到以下网址
chrome-extension://aaaaaaaaaaaaa/test.html
我可以成功查看加载的popup.html
文件。
但是,当我尝试以隐身模式访问同一网址时,我收到Chrome错误消息:
aaaaaaaaaaaaa is blocked
Requests to the server have been blocked by an extension.
Try disabling your extensions.
ERR_BLOCKED_BY_CLIENT
我在扩展程序的设置中启用了Allow in incognito
复选框。这是浏览器的预期行为吗?有没有办法以隐身模式加载文件?
BTW,我的manifest.json
文件有
...
"web_accessible_resources": [
"test.html"
],
...