|
#1
|
|||
|
|||
Problem with capturing all links from any site!
I tried different download managers:
IDM captures, but each time you have to confirm, YES or NO file name. So for each file 2 confirmation windows. For 1000 files. 2000 WINDOWS! Crazy! And nothing can be done about it, not even the developer will implement the option “don't show any more” or remember selection! Free Download Manager also does not capture and all other managers do not capture and only FIREFOX browser, Jdownloader + extension (with MyJdownloader login) to the browser and Clipboard also does not capture! Seemingly a simple link, but with a dynamic key
Spoiler:
**External links are only visible to Support Staff****External links are only visible to Support Staff**
I log in to the site, I wrote a script that automatically clicks on the download button, but I don't know how to download, it doesn't want to download through Fireflox, because I would have to laboriously slow through browsers! // ==UserScript== // @name Automatisches Klicken auf den Download-Button // @namespace **External links are only visible to Support Staff****External links are only visible to Support Staff** // @version 0.1 // @description Klicken Sie automatisch auf die Download-Schaltfläche auf der Webseite // @match *://*/* // @grant none // ==/UserScript== (function() { 'use strict'; // Funktion zum Klicken auf den Button function clickDownloadButton() { // Suche nach dem Button anhand der Klasse var buttons = document.querySelectorAll('a.btn'); // Iteriere durch alle gefundenen Buttons buttons.forEach(function(button) { // Überprüfe, ob href die Funktion jinsom_download enthält if (button.href.includes('jinsom_download')) { button.click(); // Klicke auf den Button console.log('Download-Button wurde geklickt.'); } }); } // Warte, bis die Seite geladen ist, und klicke dann auf den Button window.addEventListener('load', function() { clickDownloadButton(); }); })(); |
#2
|
||||
|
||||
Your link doesn't lead to downloadable content, also our forums are not here to provide support for such 3rd party projects.
You need to cope with this yourself or pay someone to help you. Thread closed because: Offtopic.
__________________
JD Supporter, Plugin Dev. & Community Manager
Erste Schritte & Tutorials || JDownloader 2 Setup Download |
Thread Tools | |
Display Modes | |
|
|