Skip to content

Instantly share code, notes, and snippets.

@tnhung2011
Last active December 16, 2025 11:43
Show Gist options
  • Select an option

  • Save tnhung2011/2da633d5d224716f9e1a1239fd10ad2e to your computer and use it in GitHub Desktop.

Select an option

Save tnhung2011/2da633d5d224716f9e1a1239fd10ad2e to your computer and use it in GitHub Desktop.
Grab unused files on a page of Special:UnusedFiles
// ".gallery" for Wikipedia
// "#gallery-0" for Fandom
Array.prototype.forEach.call(document.querySelector(".gallery").querySelectorAll("div > a"), function(elem) {
console.log(decodeURI(/(File:[^\?]*)/g.exec(elem.href)[1]));
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment