Yay a devtools!

This commit is contained in:
2025-02-15 12:46:14 -07:00
parent 8e6294c96f
commit 9124abb749
9 changed files with 303 additions and 0 deletions

7
devtools/devtools.js Normal file
View File

@@ -0,0 +1,7 @@
// Create a new devtools panel named "Context Stack"
browser.devtools.panels.create(
"Context Stack", // Tab title
"train icon.png", // Icon for your panel (optional)
"panel.html", // HTML page for your panel content
);
console.log("devtools loaded");