Red 40

e6* downloader without a memory leak

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

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.

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

(Tôi đã có Trình quản lý tập lệnh người dùng, hãy cài đặt nó!)

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!)

Tác giả
1fz54ARh0m8g0KUYzqui
Cài đặt hàng ngày
0
Số lần cài đặt
3
Đánh giá
0 0 0
Phiên bản
3.0
Đã tạo
24-09-2025
Đã cập nhật
24-09-2025
Kích thước
10 KB
Giấy phép
Unlicense
Áp dụng cho

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