CSC WinLoss Usernames

Show the usernames of people who have compared with you on cocksizecontest

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// ==UserScript==
// @name        CSC WinLoss Usernames
// @namespace   cocksizecontest.com
// @description Show the usernames of people who have compared with you on cocksizecontest
// @include     https://www.cocksizecontest.com/wins-losses/
// @version     1
// @grant       none
// ==/UserScript==

function csc_thumbs() {
  var thumbs = document.querySelectorAll(".cscResultsThumbs > a");
  thumbs.forEach(function(node) {
    var href = node.getAttribute('href');
    var splits = href.split('/');
    if (splits[splits.length-1].length < 1) {
      splits.length--;
    }
    var username = splits[splits.length-1];

    node.appendChild(document.createTextNode(username));
    node.style.float = 'left';
    node.style.minWidth = '10em';
  });
}
document.addEventListener("DOMContentLoaded", csc_thumbs);