Dismiss Notice
Hey Guest,
If you are interested in ghosting, the Ghosting Awards for January 2025 has just been announced:

Click here to check it out!

Old forums theme

Discussion in 'Anything and everything Free Rider' started by Calculus, Aug 6, 2021.

Tags:
?

Do you like this?

Poll closed Aug 6, 2022.
  1. Yes

    8 vote(s)
    88.9%
  2. No

    0 vote(s)
    0.0%
  3. I'll leave my response below along with ways you can improve this.

    1 vote(s)
    11.1%
  1. Calculus

    Calculus Community Developer Staff Member Administrator Ghost Moderator

    Awarded Medals
    Here's a tampermonkey script you can use to visually change forums.

    Code:
    // ==UserScript==
    // @name         Old forums
    // @version      0.1
    // @author       Calculamatrise
    // @match        *://community.freeriderhd.com/*
    // @icon         https://www.google.com/s2/favicons?domain=freeriderhd.com
    // @grant        none
    // ==/UserScript==
    
    [
        ...document.querySelectorAll(".title a"),
        ...document.querySelectorAll(".userText a"),
        ...document.querySelectorAll(".links .fl a"),
        ...document.querySelectorAll(".alertText a"),
        ...document.querySelectorAll(".listInline a"),
        ...document.querySelectorAll(".followBlock a"),
        ...document.querySelectorAll(".Profile-Links a"),
        ...document.querySelectorAll("a.primaryContent"),
        ...document.querySelectorAll(".messageContent a"),
        ...document.querySelectorAll(".lastThreadTitle a"),
        ...document.querySelectorAll("a.secondaryContent"),
        ...document.querySelectorAll(".lastPostInfo dt a"),
        ...document.querySelectorAll(".messageResponse a"),
        ...document.querySelectorAll(".nodeText .nodeTitle a"),
        ...document.querySelectorAll(".pairsInline.lastActivity a"),
        ...document.querySelectorAll(".menuColumns.secondaryContent a"),
        ...document.querySelectorAll(".secondaryContent.pairsJustified a"),
        ...document.querySelectorAll("a.username:not([class='username author'])")
    ].forEach(t => (t.style.color = "#1f80c3"));
    
    document.querySelector("#header").style.background = "#1d1d1d";
    document.querySelector("#logoBlock").style.background = "#333333";
    document.querySelector("img[src='//cdn.freeriderhd.com/free_rider_hd/forum/logo_2.png']").src = "https://cdn.freeriderhd.com/free_rider_hd/sprites/frhd_logo_v4.png";
    
    document.querySelectorAll(".userBanner.bannerRed").forEach(t => t.classList.replace("bannerRed", "bannerGray"));
    document.querySelectorAll(".userBanner.bannerGreen").forEach(t => t.classList.replace("bannerGreen", "bannerSilver"));
    document.querySelectorAll(".userBanner.bannerSkyBlue").forEach(t => (t.classList.replace("bannerSkyBlue", "bannerPrimary"), t.classList.add(t.classList.replace("wrapped", "featured") ? "wrapped" : "featured")));
    
     
    Fluoride, a_drain, josephhd and 4 others like this.
  2. AfterImage

    AfterImage Well-Known Member Team Balloon Official Author

    Awarded Medals
    Im confused how do you use this?
     

Share This Page