Forum: JDownloader 2
26.06.2022, 14:47
|
Replies: 2,408
Views: 992,393
/*
Export settings
Trigger : none ...
/*
Export settings
Trigger : none
*/
var rows = [];
var keys = [];
var file = JD_HOME + "/settings.tsv";
var settings = callAPI("config", "list", ".+", true, true, true, true);
|
Forum: Wünsche
24.06.2022, 12:39
|
Replies: 26
Views: 976
|
Forum: Wünsche
23.06.2022, 15:17
|
Replies: 26
Views: 976
|
Forum: Problems & Bug Reports
22.06.2022, 19:58
|
Replies: 15
Views: 1,025
Meant without having to repeat/typing the...
Meant without having to repeat/typing the placeholder names multiple times.
[*video_id*]-*video_id*[/*video_id*]
Something which remains same across all placholders?
Example:
-*video_id*...
|
Forum: Problems & Bug Reports
22.06.2022, 19:00
|
Replies: 15
Views: 1,025
@Jiaz: Remembering syntax or tag names ...
@Jiaz: Remembering syntax or tag names corresponding to each placeholder is a tough ask. Perhaps a uniform syntax for all placeholders, without using tag names?
FYI for if/else, foobar uses:
...
|
Forum: Problems & Bug Reports
22.06.2022, 18:17
|
Replies: 15
Views: 1,025
|
Forum: JDownloader 2
20.06.2022, 18:25
|
Replies: 2,408
Views: 992,393
var file = JD_HOME + "/" + new...
var file = JD_HOME + "/" + new Date().toISOString().substr(0, 19).replace(/[^\d]/g, "-") + ".tsv";
We'll see. No ETA though.
You're welcome.
|
Forum: JDownloader 2
20.06.2022, 14:34
|
Replies: 2,408
Views: 992,393
No worries.
The JSON file which the...
No worries.
The JSON file which the scirpt provides should have been enough for you to see things through in excel, especially since it is very well equipped to perform such tasks. So the...
|
Forum: JDownloader 2
20.06.2022, 11:58
|
Replies: 2,408
Views: 992,393
|
Forum: JDownloader 2
20.06.2022, 10:52
|
Replies: 2,408
Views: 992,393
|
Forum: JDownloader 2
18.06.2022, 12:24
|
Replies: 2,408
Views: 992,393
The script will export the settings in JSON...
The script will export the settings in JSON format. You can use excel to import/format it.
/*
Export settings
Trigger: None
*/
var file = JD_HOME + "/settings.json";
var settings =...
|
Forum: JDownloader 2
18.06.2022, 12:20
|
Replies: 2,408
Views: 992,393
/*
Remove links
Trigger : JDownloader...
/*
Remove links
Trigger : JDownloader Started
*/
getAllFilePackages().forEach(function(package) {
package.finished && package.downloadLinks.forEach(function(link) {
...
|
Forum: JDownloader 2
16.06.2022, 17:57
|
Replies: 2,408
Views: 992,393
|
Forum: JDownloader 2
16.06.2022, 15:19
|
Replies: 2,408
Views: 992,393
|
Forum: JDownloader 2
15.06.2022, 16:45
|
Replies: 2,408
Views: 992,393
/*
Random delay before download
...
/*
Random delay before download
Trigger : A Download Started
IMPORTANT : Enable "Synchronous execution" checkbox in the top panel
*/
var seconds = Math.floor(Math.random() * 5) + 1...
|
Forum: JDownloader 2
15.06.2022, 14:43
|
Replies: 2,408
Views: 992,393
/*
Rename extracted files
Trigge:...
/*
Rename extracted files
Trigge: Archvie extraction finished
*/
var name = archive.name;
archive.extractedFilePaths.forEach(function(filePath) {
filePath.renameName(name + "."...
|
Forum: JDownloader 2
15.06.2022, 13:46
|
Replies: 2,408
Views: 992,393
I think there are some scripts in this thread...
I think there are some scripts in this thread which could that. But, end-users may find it easier to customize it in packagizer than tweak the script. I have recommended it in the past to several...
|
Forum: JDownloader 2
15.06.2022, 12:52
|
Replies: 2,408
Views: 992,393
|
Forum: JDownloader 2
15.06.2022, 09:17
|
Replies: 22
Views: 697
|
Forum: General Discussion
14.06.2022, 15:22
|
Replies: 11
Views: 472
|
Forum: JDownloader 2
14.06.2022, 14:16
|
Replies: 3
Views: 196
|
Forum: JDownloader 2
14.06.2022, 13:26
|
Replies: 22
Views: 697
/*
Change Shutdown mode
Trigger:...
/*
Change Shutdown mode
Trigger: Toolbar button pressed
*/
/*
Cusomize toolbar > Create a new "Eventscripter Trigger" button > Rename it to "Close JD" > Change Icon
*/
if (name...
|
Forum: JDownloader 2
14.06.2022, 12:46
|
Replies: 22
Views: 697
|
Forum: JDownloader 2
14.06.2022, 12:29
|
Replies: 22
Views: 697
Had already checked before I first replied to...
Had already checked before I first replied to this thread. Couldn't find any API call to modify the "shutdownmode" property using eventscripter. Only possible to enable/disable the extension.
...
|
Forum: JDownloader 2
13.06.2022, 11:38
|
Replies: 2,408
Views: 992,393
|
Forum: JDownloader 2
13.06.2022, 08:57
|
Replies: 2,408
Views: 992,393
|
Forum: JDownloader 2
13.06.2022, 07:56
|
Replies: 2,408
Views: 992,393
|
Forum: Suggestions & Requests
12.06.2022, 17:17
|
Replies: 56
Views: 1,409
|
Forum: General Discussion
12.06.2022, 16:48
|
Replies: 25
Views: 631
|
Forum: Suggestions & Requests
12.06.2022, 15:51
|
Replies: 56
Views: 1,409
|
Forum: Suggestions & Requests
12.06.2022, 15:28
|
Replies: 56
Views: 1,409
|
Forum: General Discussion
12.06.2022, 13:03
|
Replies: 25
Views: 631
|
Forum: General Discussion
12.06.2022, 12:28
|
Replies: 25
Views: 631
|
Forum: JDownloader 2
12.06.2022, 11:51
|
Replies: 2,408
Views: 992,393
Just checked, 'package finshed' trigger also...
Just checked, 'package finshed' trigger also returns a link object, which returns the the download folder correctly, if "Remove finished downloads" is not enabled. If however the "Remove finished...
|
Forum: JDownloader 2
12.06.2022, 10:40
|
Replies: 2,408
Views: 992,393
|
Forum: JDownloader 2
12.06.2022, 10:18
|
Replies: 22
Views: 697
@Jiaz: Talking about "CLOSE" and "SHUTDOWN"...
@Jiaz: Talking about "CLOSE" and "SHUTDOWN" values in (org.jdownloader.extensions.shutdown.ShutdownExtension.json). Currently user has to open the "JD Shutdown" extension to view/change them. Hope I...
|
Forum: JDownloader 2
12.06.2022, 09:39
|
Replies: 22
Views: 697
|
Forum: JDownloader 2
12.06.2022, 09:02
|
Replies: 22
Views: 697
|
Forum: JDownloader 2
12.06.2022, 07:58
|
Replies: 2,408
Views: 992,393
|
Forum: JDownloader 2
10.06.2022, 19:02
|
Replies: 2,408
Views: 992,393
|
Forum: JDownloader 2
10.06.2022, 12:48
|
Replies: 2,408
Views: 992,393
|
Forum: JDownloader 2
10.06.2022, 09:54
|
Replies: 2,408
Views: 992,393
new Date().toISOString().replace("Z",...
new Date().toISOString().replace("Z", "").replace(/[^\d]/g, "-")
JD_HOME + "/"
can be replaced with any folder (existing) string. For example:
"d:/my folder/"
Insert after 'writeFile...' line:...
|
Forum: JDownloader 2
09.06.2022, 16:52
|
Replies: 2,408
Views: 992,393
|
Forum: JDownloader 2
09.06.2022, 16:48
|
Replies: 2,408
Views: 992,393
|
Forum: JDownloader 2
09.06.2022, 16:42
|
Replies: 2,408
Views: 992,393
|
Forum: JDownloader 2
09.06.2022, 16:25
|
Replies: 2,408
Views: 992,393
|
Forum: JDownloader 2
09.06.2022, 16:04
|
Replies: 2,408
Views: 992,393
|
Forum: JDownloader 2
09.06.2022, 15:23
|
Replies: 2,408
Views: 992,393
|
Forum: Suggestions & Requests
09.06.2022, 15:15
|
Replies: 59
Views: 1,502
Script tracks the versions by storing them in...
Script tracks the versions by storing them in "JD\revisions.txt". If the current version number is not present in that file, it will add it to that file and display an alert, which is what happened...
|
Forum: Suggestions & Requests
09.06.2022, 13:44
|
Replies: 59
Views: 1,502
You can modify THIS...
You can modify THIS (Link_not_visiblescript to get an alert.
Replace:
callAPI("system", "restartJD");
with:
alert("" + revision);
|