description
// ==UserScript==
// @name Torn NoConfirm Revive
// @namespace namespace
// @version 0.2
// @description description
// @author tos
// @match *.torn.com/profiles.php*
// @match *.torn.com/hospitalview.php*
// @grant none
// @license MIT
// ==/UserScript==
$( document ).ajaxSend(function(event, jqXHR, ajaxObj) {
if(ajaxObj.url) ajaxObj.url = ajaxObj.url.replace('action=revive', 'action=revive&step=revive')
})