mirror of
https://github.com/tidys/cc-inspector-chrome
synced 2026-04-28 16:36:36 +00:00
13 lines
417 B
JavaScript
13 lines
417 B
JavaScript
chrome.devtools.panels.create('cc-inspector', 'img/logo.png', 'pages/panel.html', function (panel) {
|
|
panel.onShown.addListener(function (window) {
|
|
console.log("panel show");
|
|
});
|
|
panel.onHidden.addListener(function (window) {
|
|
console.log("panel hide");
|
|
});
|
|
panel.onSearch.addListener(function (action, query) {
|
|
console.log("panel search!");
|
|
return false;
|
|
});
|
|
})
|