mirror of
https://github.com/open-webui/extension
synced 2025-06-26 18:25:58 +00:00
11 lines
298 B
JavaScript
11 lines
298 B
JavaScript
chrome.tabs.onUpdated.addListener(function (tabId, changeInfo, tab) {
|
|
// read changeInfo data and do something with it (like read the url)
|
|
if (changeInfo.url) {
|
|
// do something here
|
|
chrome.tabs.sendMessage(tabId, {
|
|
message: "urlChange",
|
|
url: changeInfo.url,
|
|
});
|
|
}
|
|
});
|