feat: ayaka supremacy
This commit is contained in:
10
web/tiktok/img_story_downloader.js
Normal file
10
web/tiktok/img_story_downloader.js
Normal 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();
|
||||
}
|
||||
Reference in New Issue
Block a user