Add support for opening the inbox via a shortcut - fixes #1134.

pull/749/head
r-clancy 8 years ago committed by Scott Nonnenberg
parent d294cc96a5
commit 66b19d5cf7

@ -339,5 +339,10 @@
}
});
chrome.commands.onCommand.addListener(function(command) {
if (command === 'show_signal') {
openInbox();
}
});
})();

@ -30,5 +30,15 @@
"background": {
"page": "background.html"
}
},
"commands": {
"show_signal": {
"suggested_key": {
"default": "Alt+S"
},
"description": "Show the Signal inbox."
}
}
}

Loading…
Cancel
Save