view who was fronting when a record was made
at main 548 B view raw
1import { defineConfig } from "wxt"; 2 3// See https://wxt.dev/api/config.html 4export default defineConfig({ 5 srcDir: "src", 6 modules: ["@wxt-dev/module-svelte"], 7 manifest: { 8 browser_specific_settings: { 9 gecko: { 10 id: "at-fronter@gaze.systems", 11 }, 12 }, 13 permissions: [ 14 "storage", 15 "webRequest", 16 "activeTab", 17 "scripting", 18 "<all_urls>", 19 ], 20 host_permissions: ["<all_urls>"], 21 content_security_policy: { 22 extension_pages: "script-src 'self'; object-src 'self'", 23 }, 24 }, 25});