Skip to content

Instantly share code, notes, and snippets.

@dacer
Created February 1, 2021 10:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dacer/19d39410e8779494b841c1e2efdd00a9 to your computer and use it in GitHub Desktop.
Save dacer/19d39410e8779494b841c1e2efdd00a9 to your computer and use it in GitHub Desktop.
sgtts.user.js
// ==UserScript==
// @name Sgtts
// @namespace https://prog-8.com/
// @version 0.1
// @description Say goodbye to Twitter's sidebar (aka Sgtts)
// @author Dacer
// @grant none
// @match https://twitter.com/*
// ==/UserScript==
const s = document.createElement('style');
s.textContent = `
.css-1dbjc4n .r-aqfbo4 .r-zso239 .r-1hycxz {
display: none !important;
}
.r-1ye8kvj {
max-width: none !important;
}
`;
document.head.appendChild(s);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment