-
Notifications
You must be signed in to change notification settings - Fork 0
/
manifest.json
33 lines (33 loc) · 1022 Bytes
/
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
{
"name": "Skipper",
"description": "Blazing fast filling forms in your amazing applications. Skip forms filling, focus on what really matters",
"version": "1.0",
"manifest_version": 3,
"icons": {
"16": "src/assets/icons/ice-cream16.png",
"32": "src/assets/icons/ice-cream32.png",
"48": "src/assets/icons/ice-cream48.png",
"128": "src/assets/icons/ice-cream128.png"
},
"content_scripts": [
{
"matches": ["https://lp.qic-insured.com/*", "http://localhost/*"],
"js": ["src/content/index.ts"]
}
],
"background": {
"service_worker": "src/background/index.ts"
},
"action": {
"default_icon": {
"16": "src/assets/icons/ice-cream16.png",
"32": "src/assets/icons/ice-cream32.png",
"48": "src/assets/icons/ice-cream48.png",
"128": "src/assets/icons/ice-cream128.png"
}
},
"permissions": [
"tabs",
"contextMenus"
]
}