40

将 webrequest api 与事件页面一起使用时,出现错误:

'webRequest' API 不能用于事件页面。

在网上看,我发现了这个话题:http ://code.google.com/p/chromium/issues/detail?id=119613

我的问题:为什么我们不能(或如何)同时使用两者?

4

2 回答 2

69

对于那些不想使用新的Event Pages并希望坚持使用Background Pages的人,请确保"persistent": true在清单文件的background属性中进行设置。

"background": {
    "scripts": ["bootstrap.js"],
    "persistent": true
  },
于 2013-07-31T19:21:56.050 回答
21

Found declarativeWebRequest API, that would be the solution.

Avalaible now in dev and beta channels.

于 2012-11-10T23:29:15.793 回答