--- title: appShellService slug: XPConnect/appShellService tags: - 'XPCOM:Language Bindings' - XPConnect translation_of: Mozilla/Tech/XPCOM/Language_bindings/XPConnect/appShellService ---

Mozilla を終了する:

var Cc = Components.classes;
var Ci = Components.interfaces;
shell = Cc["@mozilla.org/appshell/appShellService;1"];
shell = shell.getService(Ci.nsIAppShellService);
shell.quit(3); // eForceQuit

バン! Mozilla が消えます。

次に、もっと簡単な方法があります; xpcshell 拡張機能 の一つは quit 関数です:

quit(3)