![]() |
|
|
|
#1
|
||||
|
||||
|
avoid rapishare.de waiting
found elsewhere and tested
In rapishare.de there's a fixed 70 seconds or more delay to wait before being able to download the file..this trick is about how to avoid this waiting.. Quote:
__________________
Ŝħůb-Ňìĝùŕřaŧħ ₪) There are only 10 types of people in the world: Those who understand binary, and those who don't http://www.accessroot.com |
|
#2
|
|||
|
|||
|
i can confirm this trick works with opera too.. thanks Shub-Nigurrath and Mohan
|
|
#3
|
|||
|
|||
|
The Url is also in the source code (Url-encoded), i think
it's probably easier to implement decoding and parsing that, instead of the JavaScript-Way, as you just need to download that page, and do not need to interpret it (neither HTML nor JavaScript). Here is my little Delphi-function: Code:
function DecUrlEncStr(const InpStr: String): String;
var
i: Integer;
begin
SetLength(Result, Length(InpStr) div 3);
for i := (Length(InpStr) div 3) downto 1 do
Result[i] := Chr(StrToInt(LowerCase('$' + InpStr[i*3-1] + InpStr[i*3])));
end;
Last edited by aldente; 03-19-2005 at 03:28. |
|
#4
|
|||
|
|||
|
Just finished writing a tool which generates it's own html-site with the link immediately, without any clicking by yourself, and of course without ads and without waiting, test it:
http://home.scarlet.be/~jp040888/rapidshare.rar The tool uses the way I described before, to extract the real link, no html or javascript interpretation needed at all. With that tool, you can easily download files from links in the following format: rapidshare://655915/Europa_fuehrerschein_by_FxPGoD3.rar (This is NOT my file, just one which i found in another board!) As you can all read (I guess), installation should be no problem, there are known issues, but maybe you find other ones. Don't hesitate to give your feedback! |
|
#5
|
||||
|
||||
|
Nice program, however installation instructions should be included.
The *.reg which adds the protocol to HKCR must reflect the path to the file. Once you set that up import into the registry and your set Nice work! Regards
__________________
Even as darkness envelops and consumes us, wrapping around our personal worlds like the hand that grips around our necks and suffocates us, we must realize that life really is beautiful and the shadows of despair will scurry away like the fleeting roaches before the light. |
|
#6
|
|||
|
|||
|
Yeah, i've written a readme-file and forgot to include it
![]() Here it is: Quote:
-a version like this (special urls), without the known issues -a version which sniffers whole tcp-ip-traffic, and popups that window when opening a rapidshare-url (so you need no special links any more) -a version, which acts like a proxy, so rapidshare.de is being redirected to 127.0.0.1 in Windows-HOSTS-file -a version, which installs plugins to monitor the browsers, like most Download-Managers do Last edited by aldente; 03-19-2005 at 20:10. |
|
#7
|
|||
|
|||
|
Quote:
Visu |
|
#8
|
|||
|
|||
|
@D-Jester:
My tool would just monitor the browser to catch RapidShare-Links, the downloading still has to be done by the browser/downloadmanager. The problem is just to get the link into the decoder. //Edit: New version! http://home.scarlet.be/~jp040888/rapidshare.rar fixed issues: -program should not be started by clicking it directly -new browser windows is always MSIE (some of you might to want other browsers) -no comfortable installation -readme-file is now included
Last edited by aldente; 03-19-2005 at 22:40. |
|
#9
|
||||
|
||||
|
Quote:
sorry for the confusion Regards,
__________________
Even as darkness envelops and consumes us, wrapping around our personal worlds like the hand that grips around our necks and suffocates us, we must realize that life really is beautiful and the shadows of despair will scurry away like the fleeting roaches before the light. |
|
#10
|
||||
|
||||
|
10x a lot, excellent work!
just one thing I haven't understood clearly.. when in Firefox are you supposed to right click and use the plugin rapidshare download function? I tried at the free button and doesn't work. tried before, selecting the rapishare url in this form: http://rapidshare.de/files/952934/application.rar.html and doesn't work (tells me incorrect url format). could you add a little of string processing and internally converto urls in the above format to rapidshare:// urls? It would be much more usable. or ad support for right click when you are in the initial rapishare page, where there's the "free" button??
__________________
Ŝħůb-Ňìĝùŕřaŧħ ₪) There are only 10 types of people in the world: Those who understand binary, and those who don't http://www.accessroot.com Last edited by Shub-Nigurrath; 03-24-2005 at 17:05. |
|
#11
|
|||
|
|||
|
Right-click plugin just works with hyperlinks.
It was hard enough to develop this little plugin, far more difficult than to write the MSIE-extension. The program itself is already capable of handling such links, the problem is: The Firefox-extension is written in crappy JavaScript, I simply do not know how to create a link with the selected text, instead of the href-property. |
|
#12
|
||||
|
||||
|
ok ok.. I too do not know that much of js..if some1 willing to fix it would be great!
__________________
Ŝħůb-Ňìĝùŕřaŧħ ₪) There are only 10 types of people in the world: Those who understand binary, and those who don't http://www.accessroot.com |
|
#13
|
||||
|
||||
|
another solution.
|
|
#14
|
|||
|
|||
|
Thats simple and innovative taos. May be you can integrate it with firefox using Greasemonkey
http://greasemonkey.mozdev.org/ From their website: Greasemonkey is a Firefox extension which lets you to add bits of DHTML ("user scripts") to any webpage to change it's behavior. In much the same way that user CSS lets you take control of a webpage's style, user scripts let you easily control any aspect of a webpage's design or interaction. For example you could: * Make sure that all URLs displayed in the browser are clickable links * Improve the usability of a site you frequent * Route around common and annoying website bugs Last edited by visu; 03-27-2005 at 16:40. |
|
#15
|
|||
|
|||
|
@visu:
Well, the current plugin for Firefox works just fine, and I already have a code sample, to work with non-clickable links, and it'll get implemented in the next version, until then I'll enjoy my freetime. |
![]() |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Programs kills itself - how to avoid that? | aldente | General Discussion | 10 | 09-22-2005 11:15 |
| How to avoid RAR corruption? | Rhodium | General Discussion | 3 | 10-27-2003 03:20 |