Bunkrr DL Button

Add a download button below each thumbnails

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// ==UserScript==
// @name         Bunkrr DL Button
// @version      1
// @description  Add a download button below each thumbnails
// @match        https://bunkrr.su/a/*
// @namespace    bunkrr
// @license      MIT
// ==/UserScript==

(async () => {
  "use strict";
  const mediaLinks = Array.from(
    document.querySelectorAll(".grid-images_box-link")
  );

  const links = mediaLinks.map((mediaLink) => {
    const relativeLink = mediaLink.getAttribute("href");

    return window.location.origin + relativeLink;
  });

  const ddlLinks = await Promise.all(
    links.map(async (link) => {
      const response = await fetch(link);
      const html = await response.text();

      const parser = new DOMParser();
      const doc = parser.parseFromString(html, "text/html");

      const ddlLink = doc.querySelector("a[href$='.mp4']").getAttribute("href");

      return ddlLink;
    })
  );

  const grid = document.querySelector(".grid-images");
  const medias = document.querySelectorAll(".grid-images > *");

  medias.forEach((media, i) => {
    const newBox = document.createElement("div");
    newBox.style.display = "flex";
    newBox.style.flexDirection = "column";

    const dlBox = document.createElement("button");
    dlBox.textContent = "Download";
    dlBox.style.border = "solid #ffd369 2px";
    dlBox.style.borderRadius = "0px 0px 20px 20px";

    dlBox.addEventListener("click", (e) => {
      e.stopPropagation();

      window.open(ddlLinks[i]);
    });

    media.style.borderBottom = "none";
    media.style.borderBottomLeftRadius = "0px";
    media.style.borderBottomRightRadius = "0px";
    newBox.appendChild(media);
    newBox.appendChild(dlBox);
    grid.appendChild(newBox);
  });
})();