-
-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathmanifest.firefox.config.ts
39 lines (38 loc) · 1015 Bytes
/
manifest.firefox.config.ts
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
33
34
35
36
37
38
39
import { defineManifest } from "@crxjs/vite-plugin"
import ManifestConfig from "./manifest.config"
// @ts-expect-error ManifestConfig provides all required fields
export default defineManifest((env) => ({
...ManifestConfig,
icons: {
16: "src/assets/Logo/NetflixAmazon Auto-Skip.svg",
48: "src/assets/Logo/NetflixAmazon Auto-Skip.svg",
96: "src/assets/Logo/NetflixAmazon Auto-Skip.svg",
128: "src/assets/Logo/NetflixAmazon Auto-Skip.svg",
400: "src/assets/Logo/NetflixAmazon Auto-Skip.svg",
},
browser_specific_settings: {
gecko: {
id: "[email protected]",
},
},
manifest_version: 3,
background: {
scripts: ["src/background/index.ts"],
type: "module",
persistent: false,
},
permissions: [
"storage",
"webRequest",
"webRequestBlocking",
"*://*.disneyplus.com/*",
"*://*.starplus.com/*",
"*://*.primevideo.com/*",
"*://*.amazon.com/*",
"*://*.amazon.co.jp/*",
"*://*.amazon.de/*",
"*://*.amazon.co.uk/*",
"*://*.max.com/*",
"*://*.hbomax.com/*",
],
}))