5 lines
147 B
TypeScript
5 lines
147 B
TypeScript
export default defineBackground(() => {
|
|
// eslint-disable-next-line no-console
|
|
console.log('Hello background!', { id: browser.runtime.id })
|
|
})
|