Number of Trophies

7/26/2023, 12:10:53 PM

// ==UserScript==
// @name        Number of Trophies
// @namespace   Violentmonkey Scripts
// @match       https://www.strava.com/athletes/*/trophy-case
// @grant       none
// @version     1.0
// @author      lordejim
// @license     MIT
// @description 7/26/2023, 12:10:53 PM
// ==/UserScript==

// Title element
const title = document.querySelector('#trophy-case > h2');

// Find all trophies
const trophies = document.querySelectorAll('#trophy-case .list-trophies > li');

// Add total
title.innerHTML += ` (${trophies.length})`;

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址