Created
December 22, 2008 16:09
-
-
Save os0x/39032 to your computer and use it in GitHub Desktop.
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 twitter post fix | |
// @namespace http://ss-o.net/ | |
// @include http://twitter.com/home* | |
// ==/UserScript== | |
// Opera で Twitter に POST 出来るようにする UserJS | |
// 適当な実装で、別のバグを生み出すかもしれないので、怪しいと思ったら外してください。。 | |
/* // 本家がバグを修正したので、このUserJSはもはや不要です。。 | |
document.addEventListener('DOMContentLoaded',function(){ | |
try { | |
new Function('jQuery.fn.isUpdateForm = ' + (jQuery.fn.isUpdateForm+'') | |
.replace('http://s.twitter.com/status/update','http://twitter.com/status/update') | |
)(); | |
} catch (e) {} | |
},false); | |
*/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment