kbsearch-extension/background.js
2025-05-24 17:04:04 +08:00

11 lines
256 B
JavaScript

chrome.commands.onCommand.addListener(function (command) {
if (command === "open_plugin") {
chrome.windows.create({
url: "popup.html",
type: "popup",
width: 640,
height: 800
});
}
});