Threads Video Downloader

Download photos and videos from Threads quickly and easily!

< Threads Video Downloader 피드백으로 돌아가기

리뷰: 보통 - 스크립트가 작동하지만 버그 있음

§
게시: 2025-04-26

There is no GitHub repository where I can make Pull requests directly on the code, so I wrote feedback here.

  1. 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/*
    
  2. The video file name is often not appropriately specified. Please change line 64, which determines the file name, as follows.

    Before:

    let fileName = url.substring(url.lastIndexOf('/') + 1) || 'download';
    

    After:

    let fileName = url.substring(url.lastIndexOf('/') + 1, url.indexOf('.mp4') + 4) || 'download';
    

답글 게시

답글을 게시하려면 로그인하세요.