├── .gitignore ├── LICENSE ├── README.md ├── coi-serviceworker.js ├── coi-serviceworker.min.js ├── index.html └── package.json /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gzuidhof/coi-serviceworker/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gzuidhof/coi-serviceworker/HEAD/README.md -------------------------------------------------------------------------------- /coi-serviceworker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gzuidhof/coi-serviceworker/HEAD/coi-serviceworker.js -------------------------------------------------------------------------------- /coi-serviceworker.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gzuidhof/coi-serviceworker/HEAD/coi-serviceworker.min.js -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gzuidhof/coi-serviceworker/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gzuidhof/coi-serviceworker/HEAD/package.json --------------------------------------------------------------------------------