Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
mohamedkhallouq
GitHub Repository: mohamedkhallouq/content
Path: blob/main/files/en-us/mozilla/add-ons/webextensions/api/downloads/pause/index.md
6581 views
---
title: downloads.pause() slug: Mozilla/Add-ons/WebExtensions/API/downloads/pause page-type: webextension-api-function tags: - API - Add-ons - Extensions - Method - Non-standard - Reference - WebExtensions - downloads - pause browser-compat: webextensions.api.downloads.pause
---

{{AddonSidebar()}}

The pause() function of the {{WebExtAPIRef("downloads")}} API pauses a download.

This is an asynchronous function that returns a Promise.

Syntax

let pausing = browser.downloads.pause( downloadId // integer )

Parameters

  • downloadId

    • : An integer representing the id of the download to pause.

Return value

A Promise. If the call was successful, the download will be put in a paused state, and the promise will be fulfilled with no arguments. If the call fails, the promise will be rejected with an error message. The call will fail if the download is not active: for example, because it has finished downloading.

Browser compatibility

{{Compat}}

Examples

function onPaused() { console.log(`Paused download`); } function onError(error) { console.log(`Error: ${error}`); } let pausing = browser.downloads.pause(downloadId); pausing.then(onPaused, onError);

{{WebExtExamples}}

Note: This API is based on Chromium's chrome.downloads API.