Remove Private Profile Notice for github.com

This userscript removes the "Only you can see your full profile [...]" infobox on your Github profile page.

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

您需要先安裝使用者腳本管理器擴充功能後才能安裝該腳本。

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

// ==UserScript==
// @name         Remove Private Profile Notice for github.com
// @description  This userscript removes the "Only you can see your full profile [...]" infobox on your Github profile page.
// @author       ths197
// @license      BSD-3-Clause
// @namespace    https://greasyfork.org/en/users/1451968-ths197
// @include      https://github.com
// @include      https://github.com/*
// @noframes
// @run-at       document-start
// @version 0.0.1.20251021132307
// ==/UserScript==

"use strict";

// conditions

const isOnLoginUsersHomePage = () => document.body.classList.contains("mine");

var state = undefined;

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

// getting and removing

const getUserProfileFrame = () => document.getElementById("user-profile-frame"); //contents do change on some navigations

const findAndRemoveNotice = function (node) {
  const links = Array.from(node.getElementsByTagName("a"));
  const anyPreviewLink = links.find(function (node) {
    const url = new URL(node.href);
    return (
      url.pathname === window.location.pathname &&
      new URLSearchParams(url.search).has("preview", "true")
    );
  });
  anyPreviewLink?.parentElement.parentElement.remove();
};

const getControlElement = (userProfileFrame) => userProfileFrame.childNodes[1]; // div, gets replaced on navigation by the webapp

// applying

const applyChanges = function () {
  if (isOnLoginUsersHomePage()) {
    const userProfileFrame = getUserProfileFrame();
    if (userProfileFrame != null) {
      state = getControlElement(userProfileFrame);
      if (state != null) {
        findAndRemoveNotice(state);
      }
    }
  }
};

// setting stuff up (boring)

const innerObserver = new MutationObserver(function () {
  if (isChanged()) {
    applyChanges();
  }
});

const outerObserver = new MutationObserver(function () {
  if (isChanged()) {
    applyChanges();
    attachInnerObserver();
  }
});

const attachInnerObserver = function () {
  const userProfileFrame = getUserProfileFrame();
  if (userProfileFrame != null) {
    innerObserver.observe(userProfileFrame, {
      subtree: false,
      childList: true,
    });
  }
};

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

const init = function () {
  applyChanges();
  attachOuterObserver();
  attachInnerObserver();
};

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