Skip to content

Instantly share code, notes, and snippets.

@tmyt
Created December 23, 2010 08:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tmyt/752740 to your computer and use it in GitHub Desktop.
Save tmyt/752740 to your computer and use it in GitHub Desktop.
Azurea Script Sample
/*
Twitのようなショートカットキーを拡張スクリプトで実装してみる。
H,Oには組み込みのショートカットが実装されてるけども、
スクリプト側で上書きしたのが優先される。
*/
// Hキーでユーザをブラウザで表示する
System.addKeyBindingHandler('H'.charCodeAt(0), 0, function(id){
var s = TwitterService.status.get(id);
System.openUrl('http://twitter.com/' + s.user.screen_name);
});
// Oキーでユーザのふぁぼったーを表示する
System.addKeyBindingHandler('O'.charCodeAt(0), 0, function(id){
var s = TwitterService.status.get(id);
System.openUrl('http://favotter.net/user/' + s.user.screen_name);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment