Skip to content

Instantly share code, notes, and snippets.

@kuotinyen
Last active July 29, 2023 07:21
Show Gist options
  • Save kuotinyen/299433587d8da507a078b40072f6f48a to your computer and use it in GitHub Desktop.
Save kuotinyen/299433587d8da507a078b40072f6f48a to your computer and use it in GitHub Desktop.
twitter.hide.right_sidebar.js
// ==UserScript==
// @name Hide Twitter SideBar
// @namespace https://holisticlawfirm.zeabur.app/
// @version 0.1
// @description Hide Twitter right side bar.
// @author tkuo
// @match https://twitter.com/*
// @icon https://www.google.com/s2/favicons?sz=64&domain=twitter.com
// @grant none
// ==/UserScript==
(function() {
'use strict';
var getRightSideBar = function() {
var sideBar = document.querySelector("#react-root > div > div > div.css-1dbjc4n.r-18u37iz.r-13qz1uu.r-417010 > main > div > div > div > div.css-1dbjc4n.r-aqfbo4.r-zso239.r-1hycxz");
if (sideBar) {
sideBar.style.display = "none";
}
}
getRightSideBar();
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment