Skip to content

Instantly share code, notes, and snippets.

@ne-sachirou
Created March 22, 2011 13:42
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save ne-sachirou/881215 to your computer and use it in GitHub Desktop.
closeAll.js #AzureaScript
// WindowsXPでのAzurea for Windows向けです。
// http://azurea.refy.net/ja/wiki/index.php?%E7%9B%AE%E5%AE%89%E7%AE%B1%2F12 の案4のパターンです。
// @License Public Domain
System.addContextMenuHandler('全ての検索を閉じる', 0, function() {
System.views.closeAllSearch();
});
System.addContextMenuHandler('全てのユーザータイムラインを閉じる', 0, function() {
System.views.closeAllUserTimeline();
});
System.addContextMenuHandler('全ての抽出を閉じる', 0, function() {
System.views.closeAllMatch();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment