var CACHE_NAME = 'my-site-cache-v1';
var urlsToCache = [
'https://www.google.com/s2/favicons?domain=130.ua'
];
self.addEventListener('install',function(event){
event.waitUntil(caches.open(CACHE_NAME).then(function(cache){
console.log('Opened cache', urlsToCache);
return cache.addAll(urlsToCache);
}));
});