Files
jav-play/wxt.config.ts
2025-05-29 00:12:14 +08:00

20 lines
465 B
TypeScript

import { defineConfig } from 'wxt';
// See https://wxt.dev/api/config.html
export default defineConfig({
manifest: {
name: 'Jav Play',
description: 'Play video directly in JAVDB',
permissions: [
'storage',
'scripting'
],
// Explicitly grant permission for the background script to access this host.
host_permissions: [
'*://*.javdb.com/*',
'*://*.missav.ws/*',
'*://*.javlibrary.com/*'
],
},
});