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
CmdUtils.CreateCommand({ | |
name: "twitter-timeline", | |
description: "Browse Twitter Timeline", | |
preview: function(pblock, directObject) { | |
var twitterHome = "http://twitter.com/home"; | |
jQuery.get( twitterHome, {}, function(data) { | |
CmdUtils.loadJQuery(function(){ | |
pblock.innerHTML = window.$("#timeline",data).html(); | |
}); | |
}, "html"); |
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 ShowTwitterIconOnTumblerBySTOT | |
// @namespace http://libelabo.jp/ | |
// @description Show twitter icon in conversation posted by ShareTwitterOnTumblr | |
// @author kei-s | |
// @include http://*.tumblr.com/* | |
// ==/UserScript== | |
(function(){ | |
var WIDTH = "30"; |
NewerOlder