我正在尝试编写一个简单的 Chrome 扩展程序,它使用declarativeWebRequestContent-Type
替换http 响应中的标头(当前处于测试阶段;我使用的是 25.0.1364.0)。
该代码基于Catifier示例,我在其中更改了registerRules
方法:
var RequestMatcher = chrome.declarativeWebRequest.RequestMatcher;
var RemoveResponseHeader = chrome.declarativeWebRequest.RemoveResponseHeader;
var AddResponseHeader = chrome.declarativeWebRequest.AddResponseHeader;
function registerRules() {
var changeRule = {
priority: 100,
conditions: [
// If any of these conditions is fulfilled, the actions are executed.
new RequestMatcher({
contentType: ['audio/mpeg']
}),
],
actions: [
new RemoveResponseHeader({name: 'Content-Type'}),
new AddResponseHeader({name: 'Content-Type', value: 'application/octet-stream'}),
new AddResponseHeader({name: 'X-ChromeExt-Content-Type', value: 'trap'})
]
};
var callback = function() {
if (chrome.extension.lastError) {
console.error('Error adding rules: ' + chrome.extension.lastError);
} else {
console.info('Rules successfully installed');
chrome.declarativeWebRequest.onRequest.getRules(null,
function(rules) {
console.info('Now the following rules are registered: ' +
JSON.stringify(rules, null, 2));
});
}
};
chrome.declarativeWebRequest.onRequest.addRules(
[changeRule], callback);
}
从某种意义上说,它工作正常,规则已注册,我从浏览器控制台得到以下反馈:
Now the following rules are registered: [
{
"actions": [
{
"instanceType": "declarativeWebRequest.RemoveResponseHeader",
"name": "Content-Type"
},
{
"instanceType": "declarativeWebRequest.AddResponseHeader",
"name": "Content-Type",
"value": "application/octet-stream"
},
{
"instanceType": "declarativeWebRequest.AddResponseHeader",
"name": "X-ChromeExt-Content-Type",
"value": "trap"
}
],
"conditions": [
{
"contentType": [
"audio/mpeg"
],
"instanceType": "declarativeWebRequest.RequestMatcher"
}
],
"id": "_0_",
"priority": 100
}
]
问题是代码实际上并没有产生任何效果,即http响应头保持不变。我不确定这是否与Chrome 中的一个(仍然未修复的)错误有关,没有显示更改的标题。但无论如何,我有以下问题:
1)上述RequestMatcher
应用contentType
是否正确或我应该使用匹配器responseHeaders
代替(以某种方式指出Content-Type
)?
2) 如果RequestMatcher
应该应用于responseHeaders
,那么这样的规则的语法是什么?
new RequestMatcher({
responseHeaders: // what to place here to match a value in a specific header line?
// or possibly responseHeaders['Content-Type']: ...?
})
3)如何调试规则执行?我的意思是我想跟踪和分析条件是如何处理的,以及操作是如何执行的。没有这种使用declarativeWebRequest
将是一个难题,恕我直言。
提前致谢。