Fix Firefox DevTools extension paths (#231)

This commit is contained in:
Paul Bakaus
2026-06-08 15:23:37 -07:00
committed by GitHub
parent 3d1be6238c
commit 9381269a82
3 changed files with 27 additions and 4 deletions
+3 -3
View File
@@ -8,13 +8,13 @@
chrome.devtools.panels.create(
'Impeccable',
'icons/icon-32.png',
'devtools/panel.html'
'/icons/icon-32.png',
'/devtools/panel.html'
);
// Sidebar pane in the Elements panel: shows findings for the currently selected element
chrome.devtools.panels.elements.createSidebarPane('Impeccable', (sidebar) => {
sidebar.setPage('devtools/sidebar.html');
sidebar.setPage('/devtools/sidebar.html');
sidebar.setHeight('200px');
});