16 lines
365 B
TypeScript
16 lines
365 B
TypeScript
import { defineConfig } from 'wxt';
|
|
|
|
// See https://wxt.dev/api/config.html
|
|
export default defineConfig({
|
|
browser: "firefox",
|
|
manifest: {
|
|
permissions: ['storage', 'downloads'],
|
|
browser_specific_settings: {
|
|
gecko: {
|
|
id: 'picture-collector@meishibiezb.xyz',
|
|
data_collection_permissions: { required: ['none'] }
|
|
}
|
|
}
|
|
},
|
|
});
|