Skip to content

Instantly share code, notes, and snippets.

Created October 28, 2015 07:52
Show Gist options
  • Save anonymous/af438f884ab3d8e921dc to your computer and use it in GitHub Desktop.
Save anonymous/af438f884ab3d8e921dc to your computer and use it in GitHub Desktop.
var a = document.getElementsByTagName('a');
for (i=0;i<a.length;i++) {
p = /imgur\.com\/([A-Za-z0-9]+\.+[A-Za-z0-9]+)/;
res = p.exec(a[i]);
if (res!=null) {
a[i].href = 'https://img.readitlater.com/i/imgur.com/' + res[1];
}
else {
var res = a[i].href.split("imgur.com/");
if(res != null)
a[i].href = 'https://img.readitlater.com/i/imgur.com/' + res[1] +'.jpg';
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment