79749413

Date: 2025-08-28 17:16:51
Score: 1
Natty:
Report link

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();
  });
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Mark Bradshaw