The show() function of the downloads API shows the downloaded file in its containing folder in the underlying platform's file manager.
This is an asynchronous function that returns a Promise.
The show() function of the downloads API shows the downloaded file in its containing folder in the underlying platform's file manager.
This is an asynchronous function that returns a Promise.
let showing = browser.downloads.show( downloadId // integer )
downloadIdAn integer representing the ID of the DownloadItem to show.
A Promise. If the request succeeds, the promise will be fulfilled with a boolean about whether the request was successful. If the request fails, the promise will be rejected with an error message.
| Desktop | Mobile | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Chrome | Edge | Firefox | Internet Explorer | Opera | Safari | WebView Android | Chrome Android | Firefox for Android | Opera Android | Safari on IOS | Samsung Internet | |
show |
Yes | 79 | 48 | ? | Yes | No | ? | ? | 48–79 | ? | No | ? |
This example shows the most recently downloaded item:
function onShowing(success) { console.log(`Showing download item: ${success}`); } function onError(error) { console.log(`Error opening item: ${error}`); } function openDownload(downloadItems) { if (downloadItems.length > 0) { latestDownloadId = downloadItems[0].id; let showing = browser.downloads.show(latestDownloadId); showing.then(onShowing, onError); } } let searching = browser.downloads.search({ limit: 1, orderBy: ["-startTime"] }); searching.then(openDownload, onError);
Note: This API is based on Chromium's chrome.downloads API.
© 2005–2023 MDN contributors.
Licensed under the Creative Commons Attribution-ShareAlike License v2.5 or later.
https://developer.mozilla.org/en-US/docs/Mozilla/Add-ons/WebExtensions/API/downloads/show