Remove Social Media for gist.github.com

This userscript removes the "x followers", "y following" and "Set Status" fields on your own gist.github.com profile page. This is just visual.

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey, το Greasemonkey ή το Violentmonkey για να εγκαταστήσετε αυτόν τον κώδικα.

You will need to install an extension such as Tampermonkey to install this script.

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey ή το Violentmonkey για να εγκαταστήσετε αυτόν τον κώδικα.

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey ή το Userscripts για να εγκαταστήσετε αυτόν τον κώδικα.

You will need to install an extension such as Tampermonkey to install this script.

Θα χρειαστεί να εγκαταστήσετε μια επέκταση διαχείρισης κώδικα χρήστη για να εγκαταστήσετε αυτόν τον κώδικα.

(Έχω ήδη έναν διαχειριστή κώδικα χρήστη, επιτρέψτε μου να τον εγκαταστήσω!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(Έχω ήδη έναν διαχειριστή στυλ χρήστη, επιτρέψτε μου να τον εγκαταστήσω!)

// ==UserScript==
// @name         Remove Social Media for gist.github.com
// @description  This userscript removes the "x followers", "y following" and "Set Status" fields on your own gist.github.com profile page. This is just visual.
// @author       ths197
// @license      BSD-3-Clause
// @namespace    https://greasyfork.org/en/users/1451968-ths197
// @include      https://gist.github.com
// @include      https://gist.github.com/*
// @noframes
// @run-at       document-start
// @version 0.0.1.20251021132428
// ==/UserScript==

"use strict";

// conditions

const isOnLoginUsersHomePage = function () {
  const user_login_name = document.querySelector(
    "meta[name='user-login']"
  ).content;
  const page_user_name = window.location.pathname.split("/")[1];
  return user_login_name === page_user_name;
};

var state = undefined;

const isDocumentChanged = () => !state?.isConnected;

// getting and removing

const getControlElement = () => document.getElementById("gist-pjax-container"); // div, gets replaced on navigation by the webapp

const getSidebar = () =>
  document.getElementsByClassName("js-profile-editable-replace")[0]; // div

const socialMediaUrlOptions = ["followers", "following"];

const removeSocialMediaButtons = function (node) {
  const links = Array.from(node.getElementsByTagName("a"));
  const anySocialMediaLink = links.find((node) =>
    socialMediaUrlOptions.some((option) =>
      new URLSearchParams(new URL(node.href).search).has("tab", option)
    )
  );
  anySocialMediaLink?.parentElement.remove();
  Array.from(node.getElementsByClassName("user-status-container")).forEach(
    (statusContainer) => statusContainer.remove()
  );
};

// applying

const applyChanges = function () {
  if (isOnLoginUsersHomePage() && isDocumentChanged()) {
    state = getControlElement();
    if (state != null) {
      const sidebar = getSidebar(); // js-profile-editable-replace is in the subtree of div#gist-pjax-container
      if (sidebar != null) {
        removeSocialMediaButtons(sidebar);
      }
    }
  }
};

// setting stuff up (boring)

const mutationObserver = new MutationObserver(() => applyChanges());

const attachMutationObserver = () =>
  mutationObserver.observe(document.body, { subtree: false, childList: true });

const init = function () {
  applyChanges();
  attachMutationObserver();
};

if (document.readyState === "loading") {
  document.addEventListener("DOMContentLoaded", init);
} else {
  init();
}