You've already forked trmnl-chrome
mirror of
https://github.com/usetrmnl/trmnl-chrome.git
synced 2026-04-29 13:34:18 -07:00
9 lines
162 B
JavaScript
9 lines
162 B
JavaScript
chrome.devtools.panels.create(
|
|
"TRMNL",
|
|
"",
|
|
"/panel.html", // Make sure this path is correct
|
|
function (panel) {
|
|
console.log("panel created");
|
|
},
|
|
);
|