chrome.tabs API爲我們提供了一種方法來偵聽每個選項卡的url更改。 https://developer.chrome.com/extensions/tabs#event-onUpdated從chrome.tabs.onUpdate獲取前一個網址
我可以添加一個偵聽器這樣的:
chrome.tabs.onUpdated.addListener(function(tabId, changeInfo, tab){
// changeInfo.url gives the updated url if it's changed
// tab.url gives the current url for the tab
});
我想要做的是檢測領域的變化和執行一些操作,如果它。
例如,如果URL從https://google.com/abc更改爲https://google.com做些什麼。
有沒有人知道這樣做的最好方法?