├── .gitignore ├── README.md ├── icons ├── app_icon_background.webp ├── icon-120.png ├── icon-128.png ├── icon-144.png ├── icon-152.png ├── icon-180.png ├── icon-192.png ├── icon-384.png ├── icon-512.png ├── icon-72.png ├── icon-96.png ├── icon.svg ├── max_logo.webp └── original_logo.webp ├── index.html ├── manifest.json └── sw.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezh-off/max-crashed-pwa/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezh-off/max-crashed-pwa/HEAD/README.md -------------------------------------------------------------------------------- /icons/app_icon_background.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezh-off/max-crashed-pwa/HEAD/icons/app_icon_background.webp -------------------------------------------------------------------------------- /icons/icon-120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezh-off/max-crashed-pwa/HEAD/icons/icon-120.png -------------------------------------------------------------------------------- /icons/icon-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezh-off/max-crashed-pwa/HEAD/icons/icon-128.png -------------------------------------------------------------------------------- /icons/icon-144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezh-off/max-crashed-pwa/HEAD/icons/icon-144.png -------------------------------------------------------------------------------- /icons/icon-152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezh-off/max-crashed-pwa/HEAD/icons/icon-152.png -------------------------------------------------------------------------------- /icons/icon-180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezh-off/max-crashed-pwa/HEAD/icons/icon-180.png -------------------------------------------------------------------------------- /icons/icon-192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezh-off/max-crashed-pwa/HEAD/icons/icon-192.png -------------------------------------------------------------------------------- /icons/icon-384.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezh-off/max-crashed-pwa/HEAD/icons/icon-384.png -------------------------------------------------------------------------------- /icons/icon-512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezh-off/max-crashed-pwa/HEAD/icons/icon-512.png -------------------------------------------------------------------------------- /icons/icon-72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezh-off/max-crashed-pwa/HEAD/icons/icon-72.png -------------------------------------------------------------------------------- /icons/icon-96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezh-off/max-crashed-pwa/HEAD/icons/icon-96.png -------------------------------------------------------------------------------- /icons/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezh-off/max-crashed-pwa/HEAD/icons/icon.svg -------------------------------------------------------------------------------- /icons/max_logo.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezh-off/max-crashed-pwa/HEAD/icons/max_logo.webp -------------------------------------------------------------------------------- /icons/original_logo.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezh-off/max-crashed-pwa/HEAD/icons/original_logo.webp -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezh-off/max-crashed-pwa/HEAD/index.html -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezh-off/max-crashed-pwa/HEAD/manifest.json -------------------------------------------------------------------------------- /sw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ezh-off/max-crashed-pwa/HEAD/sw.js --------------------------------------------------------------------------------