Web/API/PeriodicSyncManager/getTags

From Get docs

Draft This page is not complete.


The getTags() method of the PeriodicSyncManager interface returns a Promise that resolves with a list of String objects representing the tags that are currently registered for periodic syncing.

Syntax

var tags = PeriodicSyncManager.getTags();

Parameters

None.

Return value

A Promise which resolves with a list of String objects representing tags that are currently registered for periodic syncing.

Exceptions

None.

Examples

The following example uses the getTags() method to check if a periodic sync task with a given tag is registered.

navigator.serviceWorker.ready.then(registration => {
  registration.periodicSync.getTags().then(tags => {
    if (tags.includes('get-latest-news'))
      skipDownloadingLatestNewsOnPageLoad();
  });  
});

skipDownloadingLatestNewsOnPageLoad() is a developer defined function.

Specifications

Specification Status Comment
Web Periodic Background SynchronizationThe definition of 'getTags' in that specification. Working Draft Initial definition.

Browser compatibility

Update compatibility data on GitHub

Desktop Mobile
Chrome Edge Firefox Internet Explorer Opera Safari Android webview Chrome for Android Firefox for Android Opera for Android Safari on iOS Samsung Internet

register

Experimental'Non-standard'

Chrome

Full support 80

Edge

Full support 80

Firefox

No support No

IE

No support No

Opera

Full support 67

Safari

No support No

WebView Android

Full support 80

Chrome Android

Full support 80

Firefox Android

No support No

Opera Android

Full support 57

Safari iOS

No support No

Samsung Internet Android

Full support 13.0

Legend

Full support  
Full support
No support  
No support
Experimental. Expect behavior to change in the future.'
Experimental. Expect behavior to change in the future.
Non-standard. Expect poor cross-browser support.'
Non-standard. Expect poor cross-browser support.


See also