-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwxt.config.ts
More file actions
29 lines (26 loc) · 583 Bytes
/
wxt.config.ts
File metadata and controls
29 lines (26 loc) · 583 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
import { defineConfig } from "wxt";
import { version } from "./package.json";
export const url = "https://www.jogossantacasa.pt/";
export const manifest = {
name: "JSC Unlocker",
version: version,
description: "Bypasses the forced virtual keyboard in the JSC website.",
permissions: [],
host_permissions: [url],
browser_specific_settings: {
gecko: {
id: "jsc@dy0gu.com",
},
},
};
/**
* @see https://wxt.dev/api/config.html
*/
export default defineConfig({
srcDir: "src",
entrypointsDir: "entrypoints",
webExt: {
startUrls: [url],
},
manifest: manifest,
});