Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save eladkarako/cfd3003c048ec61aae4261a6e7693248 to your computer and use it in GitHub Desktop.

Select an option

Save eladkarako/cfd3003c048ec61aae4261a6e7693248 to your computer and use it in GitHub Desktop.
direct download from opensubtitles.org (tested as of March 2025)

TL;DR

    open developer-tools (well.. console),
    then copy and paste the following javascript code.
    Array.from(
     document.documentElement.querySelectorAll('a[href*="subtitleserve"]')
    )
    .forEach(a=>{
      a.href = a.href.replace(/subtitleserve/igm, "download")
    })
    it replaces subtitleserve with download
    (it will skip various redirects, and the website "lookmovie") and you'll get a direct download link. probably without restrictions either.. until they will figure it out and put a load-balancing rule to restrict download per ip... :|
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment