Skip to content

Instantly share code, notes, and snippets.

View zmitry's full-sized avatar
🎯
Focusing

Dmitry Zherebko zmitry

🎯
Focusing
  • Ukraine
View GitHub Profile
@zmitry
zmitry / removeTwitterAds.js
Created April 11, 2020 11:55
Remove Twitter Ads
(function () {
function removeAds() {
var promoSpans = [].slice
.call(document.getElementsByTagName("span"))
.filter(el => el.innerText === "Promoted");
promoSpans.forEach(el => {
removeTweet(el);
});
function removeTweet(el) {
import styled from "@emotion/styled";
const DragContainer = styled.div`
height: 460px;
max-height: 80vh;
width: 100%;
position: relative;
overflow: hidden;
`;