mirror of
https://github.com/mdn/webextensions-examples.git
synced 2026-05-05 15:17:45 +02:00
10 lines
250 B
JavaScript
10 lines
250 B
JavaScript
|
|
browser.commands.getAll(function(commands) {
|
|
commands.forEach(function(command) {
|
|
console.log(command);
|
|
});
|
|
});
|
|
|
|
browser.commands.onCommand.addListener(function(command) {
|
|
console.log("onCommand event received for message: ", command);
|
|
}); |