Created
September 2, 2014 03:18
-
-
Save Qofar/074045b0a2e54136a6f9 to your computer and use it in GitHub Desktop.
TweetdeckのTimelineTrim処理を無効にし自動スクロールしないようにするUserScript
This file contains hidden or 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 disable Timeline trim | |
// @include https://tweetdeck.twitter.com/* | |
// @version 1.0 | |
// @license MIT License | |
// ==/UserScript== | |
(function() { | |
function source() { | |
TD.controller.feedManager.trimPollers = function() {}; | |
TD.vo.Column.prototype.trimUpdates = function() {}; | |
} | |
var script = document.createElement('script'); | |
script.type = 'text/javascript'; | |
script.innerHTML = '(' + source.toString() + ')();'; | |
document.body.appendChild(script); | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment