11 lines
256 B
JavaScript
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
|
|
});
|
|
}
|
|
});
|