In the browser console....
fetch('blob:https://www.facebook.com/<blob id>')
.then(res => res.blob())
.then(blob => {
const url = URL.createObjectURL(blob);
const a = document.createElement('a');
a.href = url;
a.download = 'file.mp4';
a.click();
});