You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Sanitize your stash screenshot for public consumption
// remove images with transparent png// https://feederbox.cc/pub/transparent.pngconstimgSrc="https://feederbox.cc/pub/transparent.png"document.querySelectorAll(".scene-card img").forEach(img=>img.src=imgSrc)// replace scene images with blurreddocument.querySelectorAll(".scene-card img.scene-card-preview-image").forEach(img=>img.style.filter='blur(10px)')// replace all titles with Lorem Ipsumconstlipsum="Lorem Ipsum"document.querySelectorAll(".card-section-title>div").forEach(title=>title.textContent=lipsum)// replace all descriptions with longer lorem ipsumconstlipsumBody="Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Leo a diam sollicitudin tempor id eu nisl nunc. Massa tincidunt dui ut ornare lectus sit amet. Euismod quis viverra nibh cras pulvinar mattis."document.querySelectorAll(".scene-card__description").forEach(txt=>txt.textContent=lipsumBody)// replace dates with linux epochconstepoch="1970-01-01"document.querySelectorAll(".scene-card__date").forEach(date=>date.textContent=epoch)