On my webpage, I set my pdf as follow:
<object data="myURL" type="application/pdf" width="300" height="200"></object>
where the URL is created with javascipt from a blob like this:
var myURL = URL.createObjectURL(blob);
The pdf gets displayed but when I click on the save button on the bottom right corner (with chrome), I get a pre-defined name (probably the URL name created with javascript)...
How can I change that name?