// ==UserScript== // @name Hack Forums Quick report box // @namespace Snorlax // @description Pops up a report box instead of a window - updated by xadamxk // @require http://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js // @include *hackforums.net/showthread.php?tid=* // @include *hackforums.net/report.php?pid=* // @version 1.0.2 // @downloadURL none // ==/UserScript== $('a[title*="Report this post"]').each(function(){ $(this).click(function(){ str = $(this).attr("href"); postID = str.replace(/[^0-9]/g, ''); $(this).after("

"); $("#closeWindow").click(function(){ $(this).parent("div").hide(); }); return false; }); }); var url = window.location.href; if (url.search("hackforums.net/report.php?") > 0) { $('a[href*="javascript"]').parent("div").hide(); }