Respond to commands
Stay organized with collections Save and categorize content based on your preferences.
Commands are key combinations that invoke an extension feature. Register commands in the manifest under the "commands"
key. For example:
{ "name": "Open developer.chrome.com", "version": "0.1", "manifest_version": 3, "description": "Opens developer.chrome.com when you use Cmd/Ctrl + Shift + Z", "background": { "service_worker": "background.js" }, "commands": { "open-tab": { "suggested_key": { "default": "Ctrl+Shift+Z", "mac": "Command+Shift+Z" }, "description": "Open developer.chrome.com" } } }
This key combination triggers the commands.onCommand
event in the service worker.
chrome.commands.onCommand.addListener((command) => { if (command !== "open-tab") return; chrome.tabs.create({ url: "https://developer.chrome.com" }); });
To see responding to commands in action, download the The Tab Flipper sample and load it unpacked.
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2024-01-26 UTC.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2024-01-26 UTC."],[],[]]