forked from North101/mpc_project_helper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
57 lines (57 loc) · 1.28 KB
/
manifest.json
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "MPC Project Helper",
"manifest_version": 3,
"icons": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png"
},
"permissions": [
"declarativeContent"
],
"host_permissions": [
"https://www.makeplayingcards.com/",
"https://www.printerstudio.co.uk/",
"https://www.printerstudio.com/",
"https://www.printerstudio.com.hk/",
"https://www.printerstudio.de/"
],
"background": {
"service_worker": "src/background.ts"
},
"content_scripts": [
{
"matches": [
"https://www.makeplayingcards.com/*",
"https://www.printerstudio.co.uk/*",
"https://www.printerstudio.com/*",
"https://www.printerstudio.com.hk/*",
"https://www.printerstudio.de/*"
],
"js": [
"src/content.tsx"
]
}
],
"action": {
"default_icon": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png"
}
},
"web_accessible_resources": [
{
"resources": [
"bootstrap.min.css"
],
"matches": [
"https://www.makeplayingcards.com/*",
"https://www.printerstudio.co.uk/*",
"https://www.printerstudio.com/*",
"https://www.printerstudio.com.hk/*",
"https://www.printerstudio.de/*"
]
}
]
}