ok no more debugging for now

This commit is contained in:
2025-02-15 21:39:32 -07:00
parent 7914eb444a
commit b30a241d09
5 changed files with 38 additions and 31 deletions

View File

@@ -1,6 +1,6 @@
// Create a new devtools panel named "Context Stack"
browser.devtools.panels.create(
"Context Stack", // Tab title
"Smoke and Rails", // Tab title
"train icon.png", // Icon for your panel (optional)
"panel.html", // HTML page for your panel content
);

View File

@@ -2,7 +2,7 @@
<html>
<head>
<meta charset="utf-8">
<title>Context Stack</title>
<title>Smoke and Rails</title>
<style>
body {
font-family: sans-serif;
@@ -40,9 +40,9 @@
</head>
<body>
<h1>Context Stack</h1>
<div id="contextContainer"></div>
<h2>Smoke and Rails Debugger</h2>
<button id="refresh">Refresh</button>
<div id="contextContainer"></div>
<script src="panel.js"></script>
</body>
</html>