Skip to content
- Choosing a selection results in a full page refresh.
- Opens in a new window.
document.addEventListener("DOMContentLoaded", function () {
const allowedHost = window.location.hostname;
const images = document.querySelectorAll("img");
images.forEach((img) => {
if (img.src && !img.src.includes(allowedHost)) {
img.src = ""; // Remove stolen image
}
});
});