我在使用 chrome 扩展的 webRequest api 重定向 url 时遇到问题
chrome.webRequest.onBeforeRequest.addListener(function(details) {
return {
redirectUrl : "file:///C:/hello.html"
};
}, {
urls : ["<all_urls>"]
}, ["blocking"]);
我可以重定向到任何 http 或 https 地址,但不能重定向到任何人都知道为什么的文件位置...?