mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/1688-chrome-extension.git
synced 2026-08-19 04:14:07 +00:00
11 lines
286 B
JavaScript
11 lines
286 B
JavaScript
chrome.tabs.onUpdated.addListener((tabId, changeInfo, tab) => {
|
|
if (changeInfo.status === 'complete' && tab.url == "https://shopkager.com/cart/detail") {
|
|
chrome.scripting
|
|
.executeScript({
|
|
target: { tabId },
|
|
files: ["inject.js"],
|
|
})
|
|
|
|
}
|
|
});
|