Forked from erydactyl/tweetdeck-limit-override.js
Created
September 28, 2017 11:51
-
-
Save f2face/7f0e8ec520c3be65973f400eba2cf4c9 to your computer and use it in GitHub Desktop.
tweetdeck-limit-override.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 Cramming | |
// @namespace http://tampermonkey.net/ | |
// @version 0.1 | |
// @description Allow 280 characters in a Tweet sent from TweetDeck automatically | |
// @author Erydactyl and Zemnmez | |
// @run-at document-idle | |
// @match https://tweetdeck.twitter.com/* | |
// @grant * | |
// ==/UserScript== | |
var stopcondition = false; | |
interval = setInterval(function(){ | |
if (stopcondition==false) { | |
if (/New Tweet/i.test (document.body.innerHTML) ) { | |
TD.services.TwitterClient.prototype.makeTwitterCall = function(b, e, f, g, c, d, h) { | |
c = c || function() {}; | |
d = d || function() {}; | |
b = this.request(b, { | |
method: f, | |
params: Object.assign(e, { | |
weighted_character_count: !0 | |
}), | |
processor: g, | |
feedType: h | |
}); | |
return b.addCallbacks(function(a) { | |
c(a.data); | |
}, function(a) { | |
d(a.req, "", a.msg, a.req.errors); | |
}), b; | |
}; | |
twttrTxt = Object.assign({}, twttr.txt, { | |
isInvalidTweet: function() { | |
return !1; | |
}, | |
getTweetLength: function() { | |
return twttr.txt.getTweetLength.apply(this, arguments) - 140; | |
} | |
}); | |
stopcondition = true; | |
} | |
} | |
},500); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment