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
The compatibility table in this page is generated from structured data. If you'd like to contribute to the data, please check out https://github.com/mdn/browser-compat-data and send us a pull request.
Update compatibility data on GitHub
| Desktop | Mobile | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 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
- Richer offline experiences with the Periodic Background Sync API
- A Periodic Background Sync demo app
PeriodicSyncManager.getTags() by Mozilla Contributors is licensed under CC-BY-SA 2.5.