SharePoint list download link

Add download link to SharePoint list items that contain links to files

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.

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

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

// ==UserScript==
// @name         SharePoint list download link
// @namespace    http://tampermonkey.net/
// @version      0.1.3
// @description  Add download link to SharePoint list items that contain links to files
// @author       apple-phi
// @match        *://*/*.aspx*
// @grant        none
// @license      MIT; https://opensource.org/licenses/MIT
// @run-at       document-start
// ==/UserScript==
"use strict";

(async () => {
  const { BlobWriter, HttpReader, ZipWriter } = await import(
    "https://unpkg.com/@zip.js/zip.js/index.js"
  );
  for (const table of document.querySelectorAll(
    "table:has(> tbody > tr > td.ms-vb-title > .ms-vb.itx > a[href])"
  )) {
    const availableFiles = table.querySelectorAll(
      "td.ms-vb-title > .ms-vb.itx > a[href]"
    );
    let anchor = document.createElement("a");
    anchor.href = "#";
    anchor.textContent = `Zipped 0 of ${availableFiles.length} files`;
    table.closest("div").prepend(anchor);
    let progress = 0;
    const zipWriter = new ZipWriter(new BlobWriter("application/zip"));
    async function addFileToZip(link) {
      const absUrl = new URL(link, window.location.origin).href;
      const segments = absUrl.split("/");
      const filename = segments.pop() || segments.pop();
      await zipWriter.add(decodeURIComponent(filename), new HttpReader(absUrl));
      progress++;
      anchor.textContent = `Zipped ${progress} of ${availableFiles.length} files`;
    }
    await Promise.all(
      [...availableFiles].map((a) => a.getAttribute("href")).map(addFileToZip)
    ).then(async () => {
      anchor.textContent = "Download zip file";
      anchor.href = URL.createObjectURL(await zipWriter.close());
      anchor.download = `${
        document.querySelector("span.ms-sitemapdirectional").textContent ||
        "download"
      }.zip`;
    });
  }
})();