Files
root 6066f43a7d Add monitoring service and database schema
- Implement monitoring service with heartbeat, lease tasks, resume tasks, and task result handling.
- Create monitoring time utilities for business date calculations.
- Add unit tests for date window resolution and business day handling.
- Define database schema for monitoring-related tables including quotas, daily reports, and task management.
- Establish migration scripts for creating and dropping monitoring tables.
2026-04-12 09:56:18 +08:00

25 lines
745 B
TypeScript

import { defineConfig } from "wxt";
export default defineConfig({
modules: ["@wxt-dev/module-vue"],
manifest: {
name: "GEO Publisher",
description: "Bind media accounts, execute local publish flows, and keep background detection tasks running.",
permissions: ["scripting", "activeTab", "background","storage", "tabs", "tabGroups", "alarms", "cookies", "webRequest", "declarativeNetRequest"],
host_permissions: ["http://*/*", "https://*/*"],
declarative_net_request: {
rule_resources: [
{
id: "publisher-rules",
enabled: true,
path: "rules.json",
},
],
},
action: {
default_title: "GEO Publisher",
default_popup: "popup.html",
},
},
});