Chrome扩展程序在链接后添加参数

时间:2019-03-08 06:46:00

标签: javascript google-chrome google-chrome-extension

我希望我的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。我该如何进行这项工作?

0 个答案:

没有答案