我有一个网页,当我访问材料时会返回以下标题:
HTTP/1.1 200 OK
Date: Sat, 29 Jun 2013 15:57:25 GMT
Server: Apache
Content-Length: 2247515
Cache-Control: no-cache, no-store, must-revalidate, max-age=-1
Pragma: no-cache, no-store
Expires: -1
Connection: close
使用 chrome 扩展,我想修改它response header
,以便实际缓存材料而不是浪费带宽。
我有以下示例代码:
chrome.webRequest.onHeadersReceived.addListener(function(details)
{
// Delete the required elements
removeHeader(details.responseHeaders, 'pragma');
removeHeader(details.responseHeaders, 'expires');
// Modify cache-control
updateHeader(details.responseHeaders, 'cache-control', 'max-age=3600;')
console.log(details.url);
console.log(details.responseHeaders);
return{responseHeaders: details.responseHeaders};
},
{urls: ["<all_urls>"]}, ['blocking', 'responseHeaders']
);
它正确地将标头修改为这样的内容(基于 console.log() 输出):
HTTP/1.1 200 OK
Date: Sat, 29 Jun 2013 15:57:25 GMT
Server: Apache
Content-Length: 2247515
Cache-Control: max-age=3600
Connection: close
但是根据我试图检查的所有内容,我看不到任何证据表明这确实发生了:
cache
不包含此文件的条目Network
选项卡中的Developer Console
HTTP 响应完全没有变化(我尝试将其更改为甚至是微不足道的修改,只是为了确保它不是错误,但仍然没有变化)。
我能找到的唯一真正的提示是这个问题,它表明我的方法仍然有效,而webRequest API 文档中的这一段表明这不起作用(但没有解释为什么我无法得到任何更改):
请注意,Web 请求 API 将网络堆栈的抽象呈现给扩展。在内部,一个 URL 请求可以拆分为多个 HTTP 请求(例如从一个大文件中获取单个字节范围),或者可以由网络堆栈处理而不与网络通信。因此,API 不提供发送到网络的最终 HTTP 标头。例如,所有与缓存相关的标头对扩展都是不可见的。
没有任何工作(我根本无法修改HTTP response header
)所以我认为这是我的第一个问题。
关于我可能出错的地方或如何找到这里出错的任何建议?
如果不可能,还有其他方法可以实现我想要实现的目标吗?