Pixeldrain unlimited download

8/24/2025, 1:10:16 PM

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

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

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

您需要先安裝使用者腳本管理器擴充功能後才能安裝該腳本。

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

// ==UserScript==
// @name        Pixeldrain unlimited download
// @namespace   Violentmonkey Scripts
// @match       https://pixeldrain.com/u/*
// @match       https://pixeldrain.com/l/*
// @grant       none
// @version     1.7.2
// @author      -
// @description 8/24/2025, 1:10:16 PM
// @license MIT
// ==/UserScript==
// jshint esversion:6

const api_base = "https://cdn.pd1.workers.dev/api/file/";

function aria2_try_add() {
  const toolbar = document.querySelector(".toolbar")
  const current = toolbar.querySelector("a#aria2-input-file");
  if (current !== null) {
    return;
  }

  const button = toolbar.querySelector("button.button.svelte-1bj9uys");

  const album_urls = Array.from(
    document.querySelectorAll("a.file.svelte-zfpa77 > div")
  ).map(div =>
    api_base + div.style["background-image"].split("/")[3]
  );

  if (album_urls.length === 0) {
    return;
  }

  const file_id = document.location.href.split("/").pop().split("#")[0];
  const aria2_input = document.createElement('a');

  aria2_input.id = "aria2-input-file";
  aria2_input.href = "data:text/plain;base64,"+btoa(album_urls.join("\n") + "\n");
  aria2_input.download = `${file_id}.txt`;
  aria2_input.innerHTML = '<button class="toolbar_button svelte-jngqwx" title="export DDL links as an aria2 input file"><i class="icon">download</i> <span class="svelte-jngqwx">Aria2 input</span></button>';
  toolbar.insertBefore(aria2_input, button);
}

function add_ddl_zip() {
  const file_id = document.location.href.split("/").pop().split("#")[0];
  const toolbar = document.querySelector(".toolbar");
  const button = toolbar.querySelector("button.button.svelte-1bj9uys");

  const link = document.createElement('a');
  link.href = `https://cdn.pd1.workers.dev/api/list/${file_id}/zip`;
  link.innerHTML = '<button class="toolbar_button svelte-jngqwx" title="Download all files in this album as a zip archive, from cloudflare"><i class="icon">download</i> <span class="svelte-jngqwx">DDL all files</span></button>';

  toolbar.insertBefore(link, button);
  aria2_try_add();
}

function add_ddl_button() {
  const description = document.querySelector("div.description");
  if (description === null) {
    return;
  }

  const current = description.querySelector("#cf-ddl-button");
  if (current !== null) {
    description.removeChild(current);
  }
  // Create the anchor element
  const link = document.createElement('a');
  link.id = "cf-ddl-button";

  if (document.location.hash.startsWith("#item=")) {
    const file_id = document.querySelector(".block.svelte-40do4p > img").src.split("/api/file/")[1].split("/")[0];
    link.href = api_base + file_id;
  } else {
    const file_id = document.location.href.split("/").pop().split("#")[0];
    link.href = api_base + file_id;
  }
  link.innerHTML = '<button class="button_highlight"><i class="icon">download</i> <span>Direct Download</span></button>';


  description.appendChild(link);
}

window.addEventListener('load', () => {
  if (
    document.location.pathname.startsWith("/u/")
  ) {
    add_ddl_button();
  }
  else if (
    document.location.pathname.startsWith("/l/")
  ) {
    add_ddl_button();
    add_ddl_zip();
    window.addEventListener('hashchange', function(event) {
      if (event.newURL.search("#item=") !== -1) {
        add_ddl_button();
      } else {
        aria2_try_add();
      }
    });
  }

}, false);