wxt
Version:
⚡ Next-gen Web Extension Framework
17 lines (16 loc) • 354 B
JavaScript
import { relative } from "node:path";
import { wxt } from "../wxt.mjs";
export function createManualRunner() {
return {
async openBrowser() {
wxt.logger.info(
`Load "${relative(
process.cwd(),
wxt.config.outDir
)}" as an unpacked extension manually`
);
},
async closeBrowser() {
}
};
}