Skip to content

Instantly share code, notes, and snippets.

@CoconutMacaroon
Created November 16, 2022 18:02
Show Gist options
  • Save CoconutMacaroon/99ff89f10ae66b758dde03ab63389014 to your computer and use it in GitHub Desktop.
Save CoconutMacaroon/99ff89f10ae66b758dde03ab63389014 to your computer and use it in GitHub Desktop.
// ==UserScript==
// @name Charcoal Team Sidebar Link
// @namespace http://tampermonkey.net/
// @version 0.1
// @description Re-adds a link to the Charcoal team to the sidebar
// @author You
// @match https://stackoverflow.com/
// @icon https://www.google.com/s2/favicons?sz=64&domain=stackoverflow.com
// @grant none
// ==/UserScript==
(function() {
'use strict';
var a = document.createElement("a");
a.href = "https://stackoverflowteams.com/c/charcoal/questions";
a.innerText = "Charcoal Team";
document.getElementsByClassName("js-create-team-cta")[1].appendChild(a);
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment