5b48ae99f4
BREAKING CHANGE: Rename `defineBackgroundScript` to `defineBackground`. Update your background entrypoints
11 lines
237 B
TypeScript
11 lines
237 B
TypeScript
export default defineBackground(() => {
|
|
console.log(browser.runtime.id);
|
|
logId();
|
|
console.log({
|
|
browser: __BROWSER__,
|
|
chrome: __IS_CHROME__,
|
|
firefox: __IS_FIREFOX__,
|
|
manifestVersion: __MANIFEST_VERSION__,
|
|
});
|
|
});
|