Letterboxd Runtime

Displays the runtime in hours and minutes instead of total minutes

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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