Created
February 1, 2021 10:47
-
-
Save dacer/19d39410e8779494b841c1e2efdd00a9 to your computer and use it in GitHub Desktop.
sgtts.user.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==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