aboutsummaryrefslogtreecommitdiff
path: root/src/background
diff options
context:
space:
mode:
Diffstat (limited to 'src/background')
-rw-r--r--src/background/actions/command.js11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/background/actions/command.js b/src/background/actions/command.js
index f1ee5b5..6d83450 100644
--- a/src/background/actions/command.js
+++ b/src/background/actions/command.js
@@ -27,6 +27,14 @@ const tabcloseCommand = () => {
});
};
+const tabcloseAllCommand = () => {
+ return browser.tabs.query({
+ currentWindow: true
+ }).then((tabList) => {
+ return browser.tabs.remove(tabList.map(tab => tab.id));
+ });
+};
+
const winopenCommand = (url) => {
return browser.windows.create({ url });
};
@@ -117,6 +125,9 @@ const exec = (tab, line, settings) => {
case 'q':
case 'quit':
return tabcloseCommand();
+ case 'qa':
+ case 'quitall':
+ return tabcloseAllCommand()
case '':
return Promise.resolve();
}