Files
browser-wakatime/src/devtools.ts
2021-01-16 23:53:50 -06:00

14 lines
487 B
TypeScript

// // Create a connection to the background page
// const backgroundPageConnection = browser.runtime.connect({
// name: 'devtools-page',
// });
// // Send a message to background page with the current active tabId
// backgroundPageConnection.postMessage({
// name: 'init',
// tabId: browser.devtools.inspectedWindow.tabId,
// });
// eslint-disable-next-line @typescript-eslint/no-floating-promises
browser.devtools.panels.create('Wakatime', 'test.png', 'WakatimeDevPanel.html');