Skip to content

Instantly share code, notes, and snippets.

@os0x
Created December 22, 2008 16:09
Show Gist options
  • Save os0x/39032 to your computer and use it in GitHub Desktop.
Save os0x/39032 to your computer and use it in GitHub Desktop.
// ==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