style-copy-extension/src/devtools.ts
2025-04-01 01:46:40 +09:00

8 lines
No EOL
287 B
TypeScript

import browser from "webextension-polyfill";
console.log("Hello from devtools!");
browser.devtools.panels.elements.createSidebarPane("Copy Panel").then((sidebar) => {
sidebar.setPage("src/sidebar.html");
}).catch((error) => {
console.error("Error creating sidebar:", error);
});