Make beforeinstallprompt event fire
This commit is contained in:
parent
fbb617ff4e
commit
6b5443ee19
BIN
icon_192.png
Normal file
BIN
icon_192.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 3.1 KiB |
BIN
icon_512.png
Normal file
BIN
icon_512.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 7.7 KiB |
@ -4,6 +4,7 @@
|
|||||||
<title>New WhatsApp Chat</title>
|
<title>New WhatsApp Chat</title>
|
||||||
<meta charset="UTF-8" />
|
<meta charset="UTF-8" />
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||||
|
<meta name="theme-color" content="#3C503A" />
|
||||||
<link rel="manifest" href="webmanifest.json" />
|
<link rel="manifest" href="webmanifest.json" />
|
||||||
<script>
|
<script>
|
||||||
function getLink() {
|
function getLink() {
|
||||||
@ -93,8 +94,10 @@
|
|||||||
outline: none;
|
outline: none;
|
||||||
box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
|
box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Used for copying to clipboard */
|
||||||
#copy-input {
|
#copy-input {
|
||||||
opacity: 0; /* Used for copying to clipboard */
|
opacity: 0;
|
||||||
pointer-events: none;
|
pointer-events: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -104,6 +107,7 @@
|
|||||||
margin: 0.25rem 0;
|
margin: 0.25rem 0;
|
||||||
opacity: 0.5;
|
opacity: 0.5;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
|
transition: all 150ms;
|
||||||
}
|
}
|
||||||
button:hover, button:focus {
|
button:hover, button:focus {
|
||||||
opacity: 1;
|
opacity: 1;
|
||||||
@ -117,7 +121,6 @@
|
|||||||
padding: 0.5rem 2rem;
|
padding: 0.5rem 2rem;
|
||||||
margin-top: 1rem;
|
margin-top: 1rem;
|
||||||
border-radius: 4px;
|
border-radius: 4px;
|
||||||
transition: all 150ms;
|
|
||||||
opacity: 1;
|
opacity: 1;
|
||||||
}
|
}
|
||||||
#send:active {
|
#send:active {
|
||||||
|
@ -7,11 +7,26 @@
|
|||||||
"sizes": "any",
|
"sizes": "any",
|
||||||
"type": "image/svg+xml",
|
"type": "image/svg+xml",
|
||||||
"purpose": "maskable"
|
"purpose": "maskable"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"src": "icon_192.png",
|
||||||
|
"sizes": "192x192",
|
||||||
|
"type": "image/png"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"src": "icon_512.png",
|
||||||
|
"sizes": "512x512",
|
||||||
|
"type": "image/png"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"start_url": ".",
|
"start_url": ".",
|
||||||
"display": "standalone",
|
"display": "standalone",
|
||||||
"theme_color": "#1DAA61",
|
"theme_color": "#1DAA61",
|
||||||
"background_color": "#EFE9DD"
|
"background_color": "#EFE9DD",
|
||||||
|
"prefer_related_applications": true,
|
||||||
|
"related_applications": {
|
||||||
|
"platform": "webapp",
|
||||||
|
"url": "https://reim.ar/tools/whatsapp-send"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user