// ==UserScript== // @name Comics links to image script // @namespace http://abaditya.wordpress.com // @description Greasemonkey user script that replaces links to different comics on the page http://www.angadi.org/comics.html with the actual images // @include http://www.angadi.org/comics.html // ==/UserScript== window.addEventListener('load',function(){ comics.load(); },true); var comics = { load : function(){ //alert('load'); var comicsTable = document.getElementsByTagName('table')[0]; var noRows = comicsTable.rows.length; //alert(noRows); for (i=0;i