Red 40

e6* downloader without a memory leak

Du musst eine Erweiterung wie Tampermonkey, Greasemonkey oder Violentmonkey installieren, um dieses Skript zu installieren.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

Sie müssten eine Skript Manager Erweiterung installieren damit sie dieses Skript installieren können

(Ich habe schon ein Skript Manager, Lass mich es installieren!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

Autor
1fz54ARh0m8g0KUYzqui
Installationen heute
0
Installationen gesamt
3
Bewertungen
0 0 0
Version
3.0
Erstellt am
24.09.2025
Letzte Aktualisierung
24.09.2025
Größe
9,77 KB
Lizenz
Unlicense
Wird angewandt auf

Red 40

An e6* downloader without a memory leak!

Usage

  1. Install script for Violentmonkey or TamperMonkey. (FireMonkey and GreaseMonkey currently don't work)
  2. Visit e621, e6ai or e926.
  3. Two buttons should appear in the secondary menu.


Configuration

Configuration is done by setting values in the script storage. Below are the values and their types.

NameTypeDescription
clientNamestringReplaces the client name sent
maximumAttemptsnumberMaximum times a resource is fetched before giving up
rememberHashesbooleanWhether to save the hashes from the download list
userAgentCompliantbooleanWhether to send the client name


Manipulating downloaded metadata

Red 40 doesn't save the metadata retrieved after downloading it. To manipulate downloaded JSON data, jq is recommended.

Below are some examples for common tasks using jq on a Unix-like machine.

Searching for posts within an ID range

jq '.[] | select(.id >= 0 and .id < 2000000)' download.json

Searching for posts by extension

jq '.[] | select(.extension == "jpg" or .extension == "png")' download.json

Searching for posts by tags

jq '.[] | select(.tags | contains(["male", "2019", "webm"]))' download.json

Searching multiple files for posts by tags

jq -s 'add | unique_by(.id) | select(.tags | contains(["female", "2020"]))' download1.json download2.json download3.json