-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Update web manifest * add lower res image * Update manifest.json * Update manifest.json
- Loading branch information
Showing
4 changed files
with
72 additions
and
14 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,74 @@ | ||
{ | ||
"name": "notify_frontend", | ||
"short_name": "notify_frontend", | ||
"start_url": "/", | ||
"display": "standalone", | ||
"orientation": "portrait", | ||
"background_color": "#000", | ||
"theme_color": "#000", | ||
"icons": [ | ||
{ | ||
"src": "/assets/icons/notify_big.png", | ||
"type": "image/png", | ||
"sizes": "512x512" | ||
} | ||
] | ||
"name": "notify app", | ||
"short_name": "notify", | ||
"start_url": "/", | ||
"display": "standalone", | ||
"orientation": "portrait", | ||
"background_color": "#000", | ||
"theme_color": "#000", | ||
"categories": [ | ||
"utilities", | ||
"productivity" | ||
], | ||
"description": "Notify is a simple app that allows you to receive notifications from a webhook.", | ||
"icons": [ | ||
{ | ||
"src": "/assets/icons/notify_big.png", | ||
"sizes": "512x512", | ||
"type": "image/png", | ||
"purpose": "any" | ||
}, | ||
{ | ||
"src": "/assets/icons/notify_big.png", | ||
"sizes": "512x512", | ||
"type": "image/png", | ||
"purpose": "maskable" | ||
}, | ||
{ | ||
"src": "/assets/icons/notify_small.png", | ||
"sizes": "192x192", | ||
"type": "image/png", | ||
"purpose": "any" | ||
}, | ||
{ | ||
"src": "/assets/icons/notify_small.png", | ||
"sizes": "192x192", | ||
"type": "image/png", | ||
"purpose": "maskable" | ||
} | ||
], | ||
"screenshots": [ | ||
{ | ||
"src": "/assets/screenshots/mobile-screenshot.png", | ||
"sizes": "1170x2532", | ||
"type": "image/png", | ||
"form_factor": "narrow", | ||
"label": "App screenshot with example notification", | ||
"platform": "ios" | ||
}, | ||
{ | ||
"src": "/assets/screenshots/mobile-screenshot.png", | ||
"sizes": "1170x2532", | ||
"type": "image/png", | ||
"form_factor": "narrow", | ||
"label": "App screenshot with example notification", | ||
"platform": "android" | ||
}, | ||
{ | ||
"src": "/assets/icons/desktop-screenshot.png", | ||
"sizes": "2038x1301", | ||
"type": "image/png", | ||
"form_factor": "wide", | ||
"label": "Home screen of Awesome App", | ||
"platform": "windows" | ||
}, | ||
{ | ||
"src": "/assets/icons/desktop-screenshot.png", | ||
"sizes": "2038x1301", | ||
"type": "image/png", | ||
"form_factor": "wide", | ||
"label": "Home screen of Awesome App", | ||
"platform": "macos" | ||
} | ||
] | ||
} |