关于Google Chrome扩展程序:将webrequest api与事件页面一起使用

Using webrequest api with event page

将webrequest api与事件页面一起使用时,会收到错误消息:

The 'webRequest' API cannot be used with event pages.

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

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


对于那些不想使用新的事件页面并且更喜欢坚持使用背景页面的人,请确保在清单文件的background属性中设置"persistent": true

1
2
3
4
"background": {
   "scripts": ["bootstrap.js"],
   "persistent": true
  },


找到declarativeWebRequest API,这将是解决方案。

现在可以在dev和beta频道中使用。