Skip to content

Instantly share code, notes, and snippets.

@knoopx
Created February 7, 2024 13:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save knoopx/1b66307a39146f065406d5fb724fae94 to your computer and use it in GitHub Desktop.
Save knoopx/1b66307a39146f065406d5fb724fae94 to your computer and use it in GitHub Desktop.
// ==UserScript==
// @name lozideas.com
// @match http://www.lozideas.com/topic/info.aspx*
// @grant none
// @version 1.0
// ==/UserScript==
$(document).off().find("*").off();
Array.from(document.querySelectorAll(".lozimg")).forEach((img)=>{
img.src = img.src.replace("_thumbnail", "")
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment