├── README.md ├── home-screen ├── imgs │ ├── html_css.png │ ├── icon192.png │ └── icon512.png ├── index.html └── manifest.json └── sw.js /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/durgesh-sahani/add-to-home-screen-localhost/HEAD/README.md -------------------------------------------------------------------------------- /home-screen/imgs/html_css.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/durgesh-sahani/add-to-home-screen-localhost/HEAD/home-screen/imgs/html_css.png -------------------------------------------------------------------------------- /home-screen/imgs/icon192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/durgesh-sahani/add-to-home-screen-localhost/HEAD/home-screen/imgs/icon192.png -------------------------------------------------------------------------------- /home-screen/imgs/icon512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/durgesh-sahani/add-to-home-screen-localhost/HEAD/home-screen/imgs/icon512.png -------------------------------------------------------------------------------- /home-screen/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/durgesh-sahani/add-to-home-screen-localhost/HEAD/home-screen/index.html -------------------------------------------------------------------------------- /home-screen/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/durgesh-sahani/add-to-home-screen-localhost/HEAD/home-screen/manifest.json -------------------------------------------------------------------------------- /sw.js: -------------------------------------------------------------------------------- 1 | self.addEventListener('fetch', function(event) {}); --------------------------------------------------------------------------------