人人相册下载器

在相册页面下载人人图片

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// ==UserScript==
// @name         人人相册下载器
// @namespace    https://github.com/ZealPenK/RenrenTimeMachine/
// @supportURL        https://github.com/xcanwin/KeepChatGPT/
// @version      0.2
// @description  在相册页面下载人人图片
// @author       ZealBiuK
// @match        https://www.renren.com/album/*
// @grant        GM_download
// @license      GPL-2.0-only
// ==/UserScript==

(function () {
  'use strict';

  // Function to download images
  function downloadImages() {
    // Extract album name from the page
    const albumNameElement = document.querySelector('.rr-albums_detail_name');
    const albumName = albumNameElement ? albumNameElement.textContent.trim() : 'default';

    // Find all ul tags with img tags
    const ulsWithImages = document.querySelectorAll('ul img');

    // Create a folder with the album name
    GM_download({
      url: 'data:text/plain;charset=utf-8,' + encodeURIComponent(''), // Dummy URL to create folder
      name: albumName,
      onload: function () {
        // Iterate through images and download them
        ulsWithImages.forEach((img, index) => {
          GM_download({
            url: img.src,
            name: `${albumName}/image_${index + 1}.jpg`,
            saveAs: false, // Change to true if you want to prompt the user for each download
          });
        });
      },
    });
  }

  // Create and append the download button
  function createDownloadButton() {
    const button = document.createElement('button');
    button.textContent = '一键下载';
    button.style.position = 'fixed';
    button.style.top = '120px';
    button.style.left = '20px';
    button.style.padding = '10px';
    button.style.fontSize = '16px';
    button.style.zIndex = '9999';
    button.style.backgroundColor = '#3580f9'; // Blue background color
    button.style.color = 'white';
    button.style.border = 'none';
    button.style.borderRadius = '5px';
    button.style.cursor = 'pointer';
    button.addEventListener('click', downloadImages);

    document.body.appendChild(button);
  }

  // Call the function to create the download button
  createDownloadButton();
})();