将 webrequest api 与事件页面一起使用时,出现错误:
'webRequest' API 不能用于事件页面。
在网上看,我发现了这个话题:http ://code.google.com/p/chromium/issues/detail?id=119613
我的问题:为什么我们不能(或如何)同时使用两者?
将 webrequest api 与事件页面一起使用时,出现错误:
'webRequest' API 不能用于事件页面。
在网上看,我发现了这个话题:http ://code.google.com/p/chromium/issues/detail?id=119613
我的问题:为什么我们不能(或如何)同时使用两者?
对于那些不想使用新的Event Pages并希望坚持使用Background Pages的人,请确保"persistent": true
在清单文件的background
属性中进行设置。
"background": {
"scripts": ["bootstrap.js"],
"persistent": true
},
Found declarativeWebRequest API, that would be the solution.
Avalaible now in dev and beta channels.