- Open dev tools
- Search for the
<video…
tag. - Copy the source URL
- Right click on the
body
tag and clickEdit as HTML
- Add an a link with the src right inside the body tag like:
<body>
<a href="url-you-copied">download</a>
...
#!/usr/bin/env node | |
// Reads JSON from stdin and writes equivalent | |
// nicely-formatted JSON to stdout. | |
var stdin = process.stdin, | |
stdout = process.stdout, | |
inputChunks = []; | |
stdin.resume(); |
<video…
tag.body
tag and click Edit as HTML
<body>
<a href="url-you-copied">download</a>
...