Letterboxd Runtime

Displays the runtime in hours and minutes instead of total minutes

Bu betiği kurabilmeniz için Tampermonkey, Greasemonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

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

Bu betiği kurabilmeniz için Tampermonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği kurabilmeniz için Tampermonkey ya da Userscripts gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği indirebilmeniz için ayrıca Tampermonkey gibi bir eklenti kurmanız gerekmektedir.

Bu komut dosyasını yüklemek için bir kullanıcı komut dosyası yöneticisi uzantısı yüklemeniz gerekecek.

(Zaten bir kullanıcı komut dosyası yöneticim var, kurmama izin verin!)

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.

(Zateb bir user-style yöneticim var, yükleyeyim!)

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