Skip to content

Instantly share code, notes, and snippets.

@Qofar
Created September 2, 2014 03:18
Show Gist options
  • Save Qofar/074045b0a2e54136a6f9 to your computer and use it in GitHub Desktop.
Save Qofar/074045b0a2e54136a6f9 to your computer and use it in GitHub Desktop.
TweetdeckのTimelineTrim処理を無効にし自動スクロールしないようにするUserScript
// ==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