проблему решил следующем образом :
GM_xmlhttpRequest({
method: "GET",
url: "http://web.archive.org/web/20140306220001/http://m.megafonpro.ru/home?from_404=1",
onload: function (m) {
GM_xmlhttpRequest({
method: "GET",
url: m.responseText.match(/(\http:\/\/m\.megafonpro\.ru\/mailru\/proxy\/[0-9a-f]{32})/g)[0],
onload: function (e) {
alert(e.responseText)
}
})
}
});