Lệnh là tổ hợp phím để gọi một tính năng tiện ích. Đăng ký lệnh
trong tệp kê khai dưới khoá "commands"
. Ví dụ:
{
"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"
}
}
}
Tổ hợp phím này sẽ kích hoạt
commands.onCommand
sự kiện trong
service worker.
chrome.commands.onCommand.addListener((command) => {
if (command !== "open-tab") return;
chrome.tabs.create({ url: "https://developer.chrome.com" });
});
Để xem phản hồi các lệnh trong thực tế, hãy tải ứng dụng Mẫu Trình lật thẻ và tải ứng dụng đã giải nén xuống.