Update script.js

This commit is contained in:
Alperen Çetin 2022-06-16 17:29:41 +03:00 committed by GitHub
parent 559719f9b6
commit 45d77d4af3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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 });