Skip to content

Instantly share code, notes, and snippets.

@karenying
Created July 8, 2020 00:29
Show Gist options
  • Save karenying/fcd96d97bc59da3ce6c8356c1f82ba7a to your computer and use it in GitHub Desktop.
Save karenying/fcd96d97bc59da3ce6c8356c1f82ba7a to your computer and use it in GitHub Desktop.
chrome.commands.onCommand.addListener(function (command) {
const direction = command.split('-')[1];
chrome.tabs.query({ active: true, currentWindow: true }, function (tabs) {
chrome.tabs.sendMessage(tabs[0].id, { direction });
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment