Activities Numbered (Geoguessr)

Shows the number of played games in activities.

当前为 2024-09-11 提交的版本,查看 最新版本

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Greasemonkey 油猴子Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Userscripts ,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

// ==UserScript==
// @name         Activities Numbered (Geoguessr)
// @namespace    alienperfect
// @version      1.2
// @description  Shows the number of played games in activities.
// @author       Alien Perfect
// @match        https://www.geoguessr.com/*
// @icon         https://www.google.com/s2/favicons?sz=32&domain=geoguessr.com
// @grant        none
// ==/UserScript==

"use strict";

function main() {
  new MutationObserver(() => {
    if (window.location.pathname !== "/me/activities") return;
    showNumbers();
  }).observe(document.body, { childList: true, subtree: true });
}

function showNumbers() {
  const activities = document.querySelectorAll(
    "[class*='activities_entries__']:not([data-skip])",
  );

  if (!activities) return;

  Array.from(activities).forEach((node) => {
    const expandButton = node.parentNode.querySelector(
      "[class*='activities_expandButtonWrapper__']",
    );

    if (!expandButton) return;

    expandButton.prepend(
      createNumDiv(node.childNodes.length),
    );

    node.setAttribute("data-skip", "");
  });
}

function createNumDiv(length) {
  const div = document.createElement("div");

  div.textContent = `(${length})`;
  div.style.margin = "1rem";

  return div;
}

main();