Skip to content

Instantly share code, notes, and snippets.

@alicraigmile
Created October 21, 2016 15:37
Show Gist options
  • Save alicraigmile/de4b3a261f4aafc558601e1dcfe00dfc to your computer and use it in GitHub Desktop.
Save alicraigmile/de4b3a261f4aafc558601e1dcfe00dfc to your computer and use it in GitHub Desktop.
promoted tweets be gone
javascript: (function () { var style = document.createElement('style'); style.type = 'text/css'; style.innerHTML = '.promoted-tweet { display: none; }'; document.getElementsByTagName('head')[0].appendChild(style); }());
var style = document.createElement('style')
style.type = 'text/css'
style.innerHTML = '.promoted-tweet { display: none; }'
document.getElementsByTagName('head')[0].appendChild(style)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment