feat: ayaka supremacy

This commit is contained in:
2026-03-12 19:41:34 +07:00
parent 2ec777f8d5
commit a1bdc79343
4 changed files with 123 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
{
let allImages = document.querySelectorAll("img");
let lastImgUrl = "";
for (const img of allImages) {
if (img.className.includes("ImgPhotoSlide")) {
lastImgUrl = img.src;
}
}
window.open(lastImgUrl, '_blank').focus();
}

View File

@@ -0,0 +1 @@
window.open(document.querySelector("video").currentSrc, '_blank').focus();