feat: WIP Engage progress

This commit is contained in:
2026-03-28 09:06:54 +10:30
parent d692f60291
commit e049f34a5e
7 changed files with 140 additions and 66 deletions
+4 -1
View File
@@ -6,7 +6,10 @@ function reloadSeqtaPages() {
const result = browser.tabs.query({});
function open(tabs: any) {
for (let tab of tabs) {
if (tab.title.includes("SEQTA Learn")) {
if (
tab.title?.includes("SEQTA Learn") ||
tab.title?.includes("SEQTA Engage")
) {
browser.tabs.reload(tab.id);
}
}