(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.
| // ==UserScript== | |
| // @name Remove Likes on Twitter | |
| // @namespace twitter | |
| // @include https://twitter.com/ | |
| // @version 2 | |
| // @grant GM_addStyle | |
| // ==/UserScript== | |
| GM_addStyle('div.promoted-tweet, div[data-component-context=suggest_activity_tweet] {display: none !important}'); |
(by @andrestaltz)
If you prefer to watch video tutorials with live-coding, then check out this series I recorded with the same contents as in this article: Egghead.io - Introduction to Reactive Programming.