Letterboxd Runtime

Displays the runtime in hours and minutes instead of total minutes

Du musst eine Erweiterung wie Tampermonkey, Greasemonkey oder Violentmonkey installieren, um dieses Skript zu installieren.

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.

Sie müssten eine Skript Manager Erweiterung installieren damit sie dieses Skript installieren können

(Ich habe schon ein Skript Manager, Lass mich es installieren!)

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             Letterboxd Runtime
// @version          0.1.0
// @author           fawn
// @namespace        https://fawn.moe
// @match            https://letterboxd.com/film/*
// @description      Displays the runtime in hours and minutes instead of total minutes
// @license          Apache-2.0
// ==/UserScript==

(function() {
  let footerEl = document.querySelector('p.text-footer');
  const [minutesText, minutes] = /(\d+).+mins/.exec(footerEl.innerHTML);

  let hours = Math.floor(minutes / 60);
  let remaining = minutes % 60;

  let formatted;
  if (hours === 0) {
    formatted = `${remaining} mins`;
  } else if (remaining === 0) {
    formatted = `${hours} hours`;
  } else {
    formatted = `${hours} hours, ${remaining} mins`;
  }

  footerEl.innerHTML = footerEl.innerHTML.replace(minutesText, formatted);

  footerEl.classList.add("tooltip");
  footerEl.setAttribute("data-original-title", `${minutes} mins`);
})();