mirror of
https://github.com/BetterSEQTA/BetterSEQTA-Plus.git
synced 2026-08-28 09:11:06 +00:00
10 lines
342 B
TypeScript
10 lines
342 B
TypeScript
/** SEQTA Engage (React) uses a different shell from classic SEQTA Learn. */
|
|
export function isSeqtaEngageExperience(): boolean {
|
|
return document.title.includes("SEQTA Engage");
|
|
}
|
|
|
|
/** Unauthenticated SEQTA login shell (Learn + Engage). */
|
|
export function isSeqtaLoginPage(): boolean {
|
|
return document.querySelector(".login") !== null;
|
|
}
|