10 lines
194 B
TypeScript
10 lines
194 B
TypeScript
import { defineConfig } from 'wxt';
|
|
|
|
// See https://wxt.dev/api/config.html
|
|
export default defineConfig({
|
|
browser: "firefox",
|
|
manifest: {
|
|
permissions: ['storage', 'downloads'],
|
|
},
|
|
});
|