Post Reply 
http range request filter
Sep. 11, 2013, 10:47 AM
Post: #1
http range request filter
i found a firefox addon that helps bypassing the download limitation

https://addons.mozilla.org/en-us/firefox...unlimited/
the open source for the addon
https://github.com/rumal/Download-Unlimited

this firefox addon modify the http Header Request
it modify the range to the allowed range
by this function
PHP Code:
// if the range header is set by the downloadThemAll
var range httpChannel.getRequestHeader('Range');
lowRange range.substring(6,range.length-1);
var 
upRange parseInt(lowRange) + download_unlimited.step;
//change it to the allowed range
httpChannel.setRequestHeader('Range','bytes='+lowRange+'-'+upRange,false);
range httpChannel.getRequestHeader('Range'); 
https://github.com/rumal/Download-Unlimi...overlay.js
who can i make a filter that do the same job of this addon
Add Thank You Quote this message in a reply
Sep. 11, 2013, 05:45 PM
Post: #2
RE: http range request filter
Please STOP TRIPLE posting !!!

Doing a copy-and-paste into three different threads will NOT get your question answered any "faster". This is the SECOND time you have done this and basically only your SECOND question on this forum.

I KINDLY request that you no longer TRIPLE post.

Thanks in advance...
Add Thank You Quote this message in a reply
Sep. 12, 2013, 09:40 AM
Post: #3
RE: http range request filter
i am sorry for that.
i thought it was different sections of the forum
Add Thank You Quote this message in a reply
Post Reply 


Forum Jump: