Greasy Fork is available in English.

Dyskusje » Propozycje stworzenia skryptu/stylu

How to convert blob download to download url ?

§
Napisano: 22-01-2021

How to convert blob download to download url

I trying to convert blob download to url convert, I get direct url download in Network Tab in Debug tools in Browser. Anyone have idea to convert blob download to direct url download ?, I don't need to bypass download page, I need only how to convert.

Download Page : https://evoload.io/f/J3PZvmizmqbWjs
File Url Download : https://talia.evosrv.com/EvoSrv/8oVAhwl80Ys4WsWG8mGK.zip?md5=3_uViqhONKn95wv-LnBfNw&expires=1611324568

§
Napisano: 22-01-2021

var ORIGINXMLHttpRequest = XMLHttpRequest.prototype.open;
```javascript
XMLHttpRequest.prototype.open = function() {
this.addEventListener('load', function() {
try{
document.querySelector('a[id*="downloadattr"]').setAttribute('href', JSON.parse(this.response)["download_data"]["original_src"])
}catch(e){};
});
ORIGINXMLHttpRequest.apply(this, arguments);
};
```

Odpowiedz

Zaloguj się, by odpowiedzieć.