Created
March 22, 2011 13:42
-
-
Save ne-sachirou/881215 to your computer and use it in GitHub Desktop.
closeAll.js #AzureaScript
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
// 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