RateYourMusic Track Time Conversion

Adds hours to the total time at the bottom of the track listings on rym track lists.

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// ==UserScript==
// @name         RateYourMusic Track Time Conversion
// @license      CC0-1.0
// @version      2025-03-14
// @description  Adds hours to the total time at the bottom of the track listings on rym track lists.
// @author       https://github.com/Schwtz
// @match        https://rateyourmusic.com/release/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=rateyourmusic.com
// @grant        none
// @namespace https://greasyfork.org/users/1439067
// ==/UserScript==
var time = document.getElementsByClassName('tracklist_total')[1].textContent.split('Total length: ')[1]
var totalMins = time.split(':')[0]
var seconds = time.split(':')[1]
 
var hours = Math.floor(totalMins / 60)
var remMins = totalMins % 60
if (remMins.toString().length == 1) {
    remMins = '0' + remMins
} 

if(hours !== 0) {
  document.getElementsByClassName('tracklist_total')[1].textContent = (hours+':'+remMins+':'+seconds)
}