Microsoft Edge 拡張機能を使用しています。
ユーザーが特定の URL に移動した場合、ユーザーをリダイレクトします。私の background.js スクリプトには次のものがあります。
browser.webNavigation.onBeforeNavigate.addListener(
function(details) {
if(details.url.indexOf("url_path") > -1){
alert("caught");
window.location = "http://new_url.com";
}
}
);
アラートは機能しますが、リダイレクトは機能しません。私が間違っていることは何ですか?また、リダイレクトで http auth にユーザー e パスを渡すことをお勧めしますか? 例: windows.location = " http://user:pass@new_url.com " ?
ありがとう :)