JDownloader Community - Appwork GmbH
 

 
 
Thread Tools Display Modes
Prev Previous Post   Next Post Next
  #1  
Old 19.07.2024, 13:08
Student im ersten Jahr Student im ersten Jahr is offline
Black Hole
 
Join Date: Nov 2020
Posts: 291
Default 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();
});
})();
 

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

All times are GMT +2. The time now is 02:53.
Provided By AppWork GmbH | Privacy | Imprint
Parts of the Design are used from Kirsch designed by Andrew & Austin
Powered by vBulletin® Version 3.8.10 Beta 1
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.