forked from solidtime-io/browser-extension
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwxt.config.ts
More file actions
32 lines (31 loc) · 917 Bytes
/
Copy pathwxt.config.ts
File metadata and controls
32 lines (31 loc) · 917 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
import { defineConfig } from "wxt";
// See https://wxt.dev/api/config.html
export default defineConfig({
modules: ["@wxt-dev/module-vue"],
manifest: {
permissions: ["storage", "identity"],
host_permissions: ["<all_urls>"],
name: "Solidtime with Manual Entry",
description:
"Solidtime browser extension with an optional manual time entry mode - log start and end times instead of running a timer",
content_security_policy: {
extension_pages: "script-src 'self'; object-src 'self'",
},
browser_specific_settings: {
gecko: {
id: "solidtime-manual@beley.dev",
data_collection_permissions: {
required: [
"personallyIdentifyingInfo",
"authenticationInfo",
"websiteContent",
],
optional: ["technicalAndInteraction"],
},
},
},
},
webExt: {
disabled: false,
},
});