嗨我想创建一个chrome扩展,这样当用户在页面example1.com上时,即使在页面加载之前,他也会被自动重定向到example2.com.无论用户是否输入网址或通过链接进入,这都应该有效.
请帮帮我!
谢谢.
最佳答案
在
后台页面中:
chrome.tabs.onUpdated.addListener(function(tabId,changeInfo,tab) {
if(tab.url.indexOf("http://example1.com") == 0 && changeInfo.status == "loading") {
chrome.tabs.update(tabId,{url: "http://example2.com"});
}
});
原文链接:https://www.f2er.com/js/429446.html