Greasy Fork is available in English.

UD Underline Related Profile Links

Modernized take on Bradley Sattem's (a.k.a. Aichon) idea to underline all related profile links on mouse hover

  1. // ==UserScript==
  2. // @name UD Underline Related Profile Links
  3. // @namespace Avarice77
  4. // @match https://urbandead.com/map.cgi*
  5. // @match https://www.urbandead.com/map.cgi*
  6. // @match https://ispy.dxavier.net/*
  7. // @run-at document-end
  8. // @inject-into auto
  9. // @grant none
  10. // @license MIT
  11. // @version 1.2
  12. // @author Avarice77
  13. // @description Modernized take on Bradley Sattem's (a.k.a. Aichon) idea to underline all related profile links on mouse hover
  14. // ==/UserScript==
  15.  
  16. const debug = false;
  17. const profileEl = document.querySelectorAll('.gt')[0].querySelector('a');
  18. const playerId = profileEl.href.substring(profileEl.href.indexOf('id=') + 3);
  19. if (debug) console.debug(`Your playerId:`, playerId);
  20. const allProfiles = Array.from(document.querySelectorAll('a[href*="profile.cgi"]:not(.y)'));
  21. allProfiles.forEach((profile, index) => {
  22. if (!profile.href.includes(playerId)) {
  23. const profileId = profile.href.substring(profile.href.indexOf('id=') + 3);
  24. if (debug) console.debug(`Processing profileId: ${profileId}`);
  25. profile.addEventListener('mouseover', (e) => {
  26. const relatedProfiles = [];
  27. allProfiles.forEach((otherProfile) => {
  28. const otherProfileId = otherProfile.href.substring(otherProfile.href.indexOf('id=') + 3);
  29. if (otherProfileId === profileId) {
  30. relatedProfiles.push(otherProfile);
  31. otherProfile.style.textDecoration = 'underline';
  32. } else {
  33. otherProfile.style.textDecoration = 'none';
  34. }
  35. });
  36. if (debug) console.debug(`Processing related profiles of profileId: ${profileId}`, relatedProfiles);
  37. });
  38. profile.addEventListener('mouseout', (e) => {
  39. allProfiles.forEach((profile) => {
  40. profile.style.textDecoration = 'none';
  41. });
  42. });
  43. if (debug) console.debug(`Added even listeners for profileId: ${profileId}`);
  44. }
  45. });