mirror of
https://codeberg.org/vlw/disneyplus-pip.git
synced 2025-09-13 18:33:40 +02:00
Update script.js
This commit is contained in:
parent
559719f9b6
commit
45d77d4af3
1 changed files with 3 additions and 3 deletions
|
@ -18,9 +18,9 @@ class PIPController {
|
|||
// Returns true if the page is /video/
|
||||
isPlayerPage() {
|
||||
const url = new URL(window.location);
|
||||
const pathname = url.pathname.split("/");
|
||||
const pattern = /^\/?([A-Za-z-]*)?\/video\//i;
|
||||
|
||||
return pathname[1] === "video" ? true : false;
|
||||
return pattern.test(url.pathname) ? true : false;
|
||||
}
|
||||
|
||||
// Enter/exit PIP mode
|
||||
|
@ -77,4 +77,4 @@ class PIPController {
|
|||
}
|
||||
}
|
||||
|
||||
window.addEventListener("load", () => new PIPController(), { once: true });
|
||||
window.addEventListener("load", () => new PIPController(), { once: true });
|
||||
|
|
Loading…
Add table
Reference in a new issue