Letterboxd Runtime

Displays the runtime in hours and minutes instead of total minutes

K instalaci tototo skriptu si budete muset nainstalovat rozšíření jako Tampermonkey, Greasemonkey nebo Violentmonkey.

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

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Userscripts.

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

K instalaci tohoto skriptu si budete muset nainstalovat manažer uživatelských skriptů.

(Už mám manažer uživatelských skriptů, nechte mě ho nainstalovat!)

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.

(Už mám manažer uživatelských stylů, nechte mě ho nainstalovat!)

// ==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`);
})();