Download photos and videos from Threads quickly and easily!
< Commentaires sur Threads Video Downloader
There is no GitHub repository where I can make Pull requests directly on the code, so I wrote feedback here.
The website address has been changed from thread.net to thread.com. Therefore, please change line 7 as follows.
Before:
// @match https://*.threads.net/*
After:
// @match https://*.threads.com/*
The video file name is often not appropriately specified. Please change line 64, which determines the file name, as follows.
let fileName = url.substring(url.lastIndexOf('/') + 1) || 'download';
let fileName = url.substring(url.lastIndexOf('/') + 1, url.indexOf('.mp4') + 4) || 'download';
Connectez-vous pour poster une réponse.
There is no GitHub repository where I can make Pull requests directly on the code, so I wrote feedback here.
The website address has been changed from thread.net to thread.com. Therefore, please change line 7 as follows.
Before:
After:
The video file name is often not appropriately specified. Please change line 64, which determines the file name, as follows.
Before:
After: