// ==UserScript==
// @name reddit undelete [pullpush.io API]
// @namespace http://tampermonkey.net/
// @version 0.1
// @description Redirect reddit to Undelete instance on pullpush.io using 3rd party API
// @author You
// @match ://.reddit.com/*
// @exclude ://old.reddit.com/
// @exclude ://i.reddit.com/
// @exclude ://i.redd.it/
// @grant GM.xmlHttpRequest
// @connect reddit.com
// @grant GM_addStyle
// @icon data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==
// ==/UserScript==
(function() {
'use strict';
var reg = new RegExp('(.)://(www.)?reddit.com/(.)');
if (reg.test(document.URL))
{
var newURL = 'https://undelete.pullpush.io'+window.location.pathname;
window.location.href = newURL;
}
})();