Perintah adalah kombinasi tombol yang memanggil fitur ekstensi. Mendaftarkan perintah
dalam manifes dengan kunci "commands"
. Contoh:
{
"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"
}
}
}
Kombinasi tombol ini memicu
commands.onCommand
peristiwa di
pekerja layanan.
chrome.commands.onCommand.addListener((command) => {
if (command !== "open-tab") return;
chrome.tabs.create({ url: "https://developer.chrome.com" });
});
Untuk melihat cara kerja respons perintah, download paket Tab Flipper dan muat dalam paketnya.