Greasy Fork is available in English.

LizardWizardLPCaptions

Shows the filenames for Lizard Wizard's lpix images next to the images

  1. // ==UserScript==
  2. // @name LizardWizardLPCaptions
  3. // @namespace LizardWizardLPCaptions
  4. // @description Shows the filenames for Lizard Wizard's lpix images next to the images
  5. // @version 0.1
  6. // @include https://forums.somethingawful.com/showthread.php?*threadid=3543889*
  7. // @require http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js
  8. // ==/UserScript==
  9.  
  10. $(window).load(function(){
  11. $("td.postbody").find("img").each(function(){
  12. var src = $(this).attr("src");
  13. if(src.indexOf("lpix.org") != -1 && src.indexOf("-") != -1) { //Only LP images, excluding thumbnails
  14. $(this).after(" <i>" + src.substr(src.lastIndexOf("/") + 1) + "</i>");
  15. }
  16. });
  17. });