我希望我的chrome扩展程序在链接的末尾添加?style=true
,但是我似乎无法使其正常工作。
background.js
chrome.webRequest.onBeforeRequest.addListener(
function(details) {
console.log(details);
var currentUrl = tabs[0].url;
if (details.url == '*://*.examplesite.com/*') {
return {
redirectUrl: currentUrl + "/?style=true"
};
};
},
{
urls: ["https://*/*"]
}, ["blocking"]
);
所以如果我去
examplesite.com
,它应该将我重定向到examplesite.com?style=true
它成功完成,但是examplesite.com/test/hello/foo.html
不会重定向到examplesite.com/test/hello/foo.html?style=true
。我该如何进行这项工作?