Skip to content

Instantly share code, notes, and snippets.

@thangman22
Last active September 23, 2022 15:46
Show Gist options
  • Save thangman22/369bdfe257bfd7681efeb3f296badbc1 to your computer and use it in GitHub Desktop.
Save thangman22/369bdfe257bfd7681efeb3f296badbc1 to your computer and use it in GitHub Desktop.
const swReg = await navigator.serviceWorker.ready
if('BackgroundFetchManager' in self) {
await swReg.backgroundFetch.fetch('postr-download', ['image.png'], {
title: 'Postr.me is capturing',
icons: [{
sizes: '512x512',
src: '/assets/img/icon-512.png',
type: 'image/png'
}],
downloadTotal: 60 * 1024 * 1024
})
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment