Intermediate Site Bypasser

By supralover23 Last update Feb 2, 2009 — Installed 7,478 times.

Can't get 2 feb 2009 version to work

in
Subscribe to Can't get 2 feb 2009 version to work 8 posts, 6 voices



Blinkiz User

Hi there
Can't get the version uploaded second february 2009 to work. Am using Firefox 3.1 Beta 3. When I click on a linkbucks link, I get this in a new tab: Firefox can't find the file at jar:file:///usr/lib/firefox-3.1b3pre/chrome/browser.jar!/content/browser/undefined. Also am using Ubuntu 8.10 desktop

 
supralover23 Script's Author

Hi there, can you post up the link you're trying to reach, and I'll see what I can do :)

 
izar User

The same problem as "Blinkiz" with FF 3.0.6

 
supralover23 Script's Author

Same answer as me, can you post up the relevant link?

 
Anarchist User

The same mistake comes with me with FF 3.06 and 3.07 (Win XP - SP 3)

sorry, it is a adult links from my forum.

I wisely not – I can it post here

 
DrakeFromFrance User

I have the same problem as the people above. And it's about Pr0n (obviously). When I click on links like http://*.ubucks.net/ or http://*.qvvo.com/ or http://*.urlpulse.net/ all I get is jar:file:///C:/Program%20Files/Mozilla%20Firefox/chrome/browser.jar!/content/browser/undefined. Example: http://ef6e8dbf.urlpulse.net/, normaly goes to http://img127.hotlinkimage.com/img.php?id=50665....

 
DrakeFromFrance User

Ok, it seems that this error is happening when the intermediate cash site points toward HotLinkImage. It could come from the way the scripts handles HotLinkImage. So all I did is simply erasing the lines which refers to HotLinkImage. It's surely a bad way of fixing the problem, but I have no javascript skills. Then it worked! Anyway, I were pleased to see a better way of fixing the probem.
My Cashlink Redirect script looks like this:

// ==UserScript==
// @name Cashlink Redirect
// @namespace http://anycashlink.com
// @description Provides forwarding from annoying intermediate sites.
// @include http://*.usercash.*
// @include http://*.urlcash.*
// @include http://*.picfoco.com/img.php?id=*
// @include http://*.anonymz.*
// @include http://*.imagevenue.com/uploadimg*
// @include http://*.imagelist.net/show.php*
// @include http://*.picsuploadz.com/share-*
// @include http://picsuploadz.com/share-*
// @include http://*.hotlinkimage.com/img.php?id=*
// @include http://*.linkbucks.com/*
// @include http://*.baberepublic.com/*
// @include http://*.blahetc.com/*
// @include http://*.linkgalleries.net/*
// @include http://*.placepictures.com/*
// @include http://*.picturesetc.net/*
// @include http://*.qvvo.com/*
// @include http://*.realfiles.net/*
// @include http://*.seriousfiles.com/*
// @include http://*.seriousurls.com/*
// @include http://*.thatsprime.com/*
// @include http://*.thesegalleries.com/*
// @include http://*.thesefiles.com/*
// @include http://*.ubucks.net/*
// @include http://*.urlpulse.net/*
// @include http://*.viraldatabase.com/*
// @include http://*.youfap.com/*
// ==/UserScript==

var url = window.location.href;
var temp = new Array();
temp = url.split('\.');
var temp2 = new Array();
temp2 = url.split('=');
var temp3 = new Array();
temp3 = url.split('\?');

//URLCash - Added 1/29/2009
if(temp[1].toLowerCase() == "urlcash")
{
try
{
var title = document.title;
window.location.replace(title.substring(1,title.length-1));
}
catch(e) { }
}

//UserCash - Added 1/29/2009
if(temp3.length == 1 && (temp[1].toLowerCase() == "usercash" || temp[0].toLowerCase() == "
{
//Where page title is destination page URL
if(document.title.substring(7,0).toLowerCase() == "

{
try
{
window.location.replace(document.title);
}
catch(e) { }
}

//Where page title is not destination page URL
if(document.title.substring(7,0).toLowerCase() != "

{
try
{
var destination = document.getElementsByTagName('table')[0].getElementsByTagName('td')[2].getElementsByTagName('a')[0].getAttribute('href');
window.location.replace(destination);
}
catch(e) { }
}
}

//Anonymz - Added 1/30/2009
if(temp[1].toLowerCase() == "anonymz" || temp[0].toLowerCase() == "

{
var url = document.title;
if(temp[1].toLowerCase() == "anonymz")
{
try
{
window.location.replace(url.substring(26,url.length));
}
catch(e) { }
}
if(temp[0].toLowerCase() == "

{
try
{
window.location.replace(url.substring(22,url.length));
}
catch(e) { }
}
}

//Imagevenue - Added 2/1/2009 **Untested**
if(temp[1].toLowerCase() == "imagevenue" || temp[0].toLowerCase() == "

{
try
{
window.location.replace(document.links[0]);
}
catch(e) { }
}

//Imagelist - Added 1/30/2009
if(temp[1].toLowerCase() == "imagelist" || temp[0].toLowerCase() == "

{
var u = url.split('\/');
try
{
window.location.replace("

}
catch(e) { }
}

//Picsuploadz - Added 1/31/2009
if(temp[1].toLowerCase() == "picsuploadz" || temp[0].toLowerCase() == "

{
try
{
window.location.replace(document.links[7]);
}
catch(e) { }
}

//Picfoco - Added 1/31/2009 **May Not Work In Certain Cases**
if(temp[1].toLowerCase() == "picfoco")
{
if(temp2.length <= 3)
{
try
{
window.location.href = document.links[0];
}
catch(e) { }
}
if(temp2.length > 3)
{
if(window.location.href.charAt(window.location.href.length-1) == ('D' || '='))
{
try
{
window.location.href = document.getElementsByTagName('img')[0].getAttribute('src');
}
catch(e) { }
}
if(window.location.href.charAt(window.location.href.length-1) != ('D' || '='))
{
try
{
window.location.href = document.links[0];
}
catch(e) { }
}
}
}

//Linkbucks - Added 1/30/2009
if(temp[1].toLowerCase() == "linkbucks" || temp[0].toLowerCase() == "

{
try
{
window.location.replace(document.links[1]);
}
catch(e) { }
}

//Baberepublic - Added 1/30/2009
if(temp[1].toLowerCase() == "baberepublic" || temp[0].toLowerCase() == "

{
try
{
window.location.replace(document.links[1]);
}
catch(e) { }
}

//Blahetc - Added 1/30/2009
if(temp[1].toLowerCase() == "blahetc" || temp[0].toLowerCase() == "

{
try
{
window.location.replace(document.links[1]);
}
catch(e) { }
}

//Linkgalleries - Added 1/30/2009
if(temp[1].toLowerCase() == "linkgalleries" || temp[0].toLowerCase() == "

{
try
{
window.location.replace(document.links[1]);
}
catch(e) { }
}

//Placepictures - Added 1/30/2009
if(temp[1].toLowerCase() == "placepictures" || temp[0].toLowerCase() == "

{
try
{
window.location.replace(document.links[1]);
}
catch(e) { }
}

//Picturesetc - Added 1/30/2009
if(temp[1].toLowerCase() == "picturesetc" || temp[0].toLowerCase() == "

{
try
{
window.location.replace(document.links[1]);
}
catch(e) { }
}

//Qvvo - Added 1/30/2009
if(temp[1].toLowerCase() == "qvvo" || temp[0].toLowerCase() == "

{
try
{
window.location.replace(document.links[1]);
}
catch(e) { }
}

//Realfiles - Added 1/30/2009
if(temp[1].toLowerCase() == "realfiles" || temp[0].toLowerCase() == "

{
try
{
window.location.replace(document.links[1]);
}
catch(e) { }
}

//Seriousfiles - Added 1/30/2009
if(temp[1].toLowerCase() == "seriousfiles" || temp[0].toLowerCase() == "

{
try
{
window.location.replace(document.links[1]);
}
catch(e) { }
}

//Seriousurls - Added 1/30/2009
if(temp[1].toLowerCase() == "seriousurls" || temp[0].toLowerCase() == "

{
try
{
window.location.replace(document.links[1]);
}
catch(e) { }
}

//Thatsprime - Added 1/30/2009
if(temp[1].toLowerCase() == "thatsprime" || temp[0].toLowerCase() == "

{
try
{
window.location.replace(document.links[1]);
}
catch(e) { }
}

//Thesegalleries - Added 1/30/2009
if(temp[1].toLowerCase() == "thesegalleries" || temp[0].toLowerCase() == "

{
try
{
window.location.replace(document.links[1]);
}
catch(e) { }
}

//Thesefiles - Added 1/30/2009
if(temp[1].toLowerCase() == "thesefiles" || temp[0].toLowerCase() == "

{
try
{
window.location.replace(document.links[1]);
}
catch(e) { }
}

//Ubucks - Added 1/30/2009
if(temp[1].toLowerCase() == "ubucks" || temp[0].toLowerCase() == "

{
try
{
window.location.replace(document.links[1]);
}
catch(e) { }
}

//Urlpulse - Added 1/30/2009
if(temp[1].toLowerCase() == "urlpulse" || temp[0].toLowerCase() == "

{
try
{
window.location.replace(document.links[1]);
}
catch(e) { }
}

//Viraldatabase - Added 1/30/2009
if(temp[1].toLowerCase() == "viraldatabase" || temp[0].toLowerCase() == "

{
try
{
window.location.replace(document.links[1]);
}
catch(e) { }
}

//Youfap - Added 1/30/2009
if(temp[1].toLowerCase() == "linkbucks" || temp[0].toLowerCase() == "

{
try
{
window.location.replace(document.links[1]);
}
catch(e) { }
}

 
Alexo User

Similar problem here using FF 3.0.10 on Win XP.
Also fails on Picfoco.

supralover23, a fix would be greatly appreciated!

Cross
Presentational HTML allowed.
Use <code> for inline code and <pre> for code blocks. Use &lt; and &gt; for literal < and >.
We help break paragraphs and link your links.
or cancel