NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name GGn Read All // @version 0.1 // @updateURL // @downloadURL // @description Read All Unread PM // @author NullPhantom // @match https://gazellegames.net/inbox.php // @match https://www.gazellegames.net/inbox.php // @grant none // @require http://code.jquery.com/jquery-latest.js // ==/UserScript== (function() { var hrefs = new Array(); var elements = $('.unreadpm a:first-child'); elements.each(function() { hrefs.push($(this).attr('href')); }); $('body').append('<input type="button" value="Read all" id="NP">'); $("#NP").css("position", "fixed").css("top", 0).css("left", 0); $('#NP').click(function(){ $.each(hrefs, function(index, value) { $("body").append ( '<iframe class="ggnread" src="' + value + '" style="width:0;height:0;border:0;display:none;visibility:hidden;border:none;"></iframe>' ); }); }); })();