Created
November 4, 2015 20:14
-
-
Save dmpe/7247cfc24ad97a984fea to your computer and use it in GitHub Desktop.
Delete TweetDeck's heart for the star (pre November 2015) | Greasemonkey 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 Tweetdeck Permant | |
// @description Block that fucking heart on tweetdeck | |
// @namespace https://tweetdeck.twitter.com | |
// @include https://*.twitter.com/* | |
// @include https://tweetdeck.com/* | |
// @include https://tweetdeck.twitter.com/* | |
// @version 1.3 | |
// @author https://github.com/dmpe | @dmpe | John Malc | |
// @grant none | |
// @license https://creativecommons.org/licenses/by-nc-sa/4.0/ | |
// ==/UserScript== | |
window.setInterval(function() { | |
document.body.className = document.body.className.replace("hearty",""); | |
}, 5000); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment