Skip to content

Instantly share code, notes, and snippets.

@jstotz
Created May 5, 2010 02:53
Show Gist options
  • Save jstotz/390324 to your computer and use it in GitHub Desktop.
Save jstotz/390324 to your computer and use it in GitHub Desktop.
// ==UserScript==
// @name Lemmingtrail Image Inliner
// @namespace http://jasonstotz.com/
// @version 0.0.1
// @include http://*.lemmingtrail.com/*
// @include http://lemmingtrail.com/*
// ==/UserScript==
(function () {
var regex = /<a href="([^"]*)" class="tr1">IMAGE\s*REMOVED\s*-\s*CLICK\s*TO\s*VIEW<\/a>/g;
document.body.innerHTML = document.body.innerHTML.replace(regex, "<img src=\"$1\" />");
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment