View Single Post
  #2306  
Old 13.06.2022, 08:57
mgpai mgpai is offline
Script Master
 
Join Date: Sep 2013
Posts: 1,545
Default

Quote:
Originally Posted by Student im ersten Jahr View Post
@mgpai - Can you please provide a script to save direct links to a text file?
Code:
/*
    Save direct links to text
    Trigger: A Download stopped
*/

if (link.downloadHost == "vk.com") {
    var directLink = link.getProperty("picturedirectlink") || link.getProperty("directurls_fallback");

    try {
        directLink && writeFile(link.downloadPath + ".txt", directLink, false);
    } catch (e) {};
}

@Jiaz: One example where mere mortals who wish to offer support/help need access to obfuscated content.
Reply With Quote