downloads

Позволяет расширениям взаимодействовать с менеджером загрузки браузера. Этот модуль API можно использовать для загрузки, отмены, приостановки, возобновления загрузки файлов и отображения загруженных файлов в файловом менеджере.

Для использования этого API вам необходимо указать "downloads" API permission в вашем manifest.json файле.

Types

downloads.FilenameConflictAction (en-US)

Определяет действия в случае, если имя загружаемого файла конфликтует с именем существующего файла.

downloads.InterruptReason (en-US)

Defines a set of possible reasons why a download was interrupted.

downloads.DangerType (en-US)

Defines a set of common warnings of possible dangers associated with downloadable files.

downloads.State (en-US)

Defines different states that a current download can be in.

downloads.DownloadItem (en-US)

Represents a downloaded file.

downloads.StringDelta (en-US)

Represents the difference between two strings.

downloads.DoubleDelta (en-US)

Represents the difference between two doubles.

downloads.BooleanDelta (en-US)

Represents the difference between two booleans.

downloads.DownloadTime (en-US)

Represents the time a download took to complete.

downloads.DownloadQuery (en-US)

Defines a set of parameters that can be used to search the downloads manager for a specific set of downloads.

Functions

downloads.download() (en-US)

Downloads a file, given its URL and other optional preferences.

downloads.search() (en-US)

Queries the DownloadItems (en-US) available in the browser's downloads manager, and returns those that match the specified search criteria.

downloads.pause() (en-US)

Pauses a download.

downloads.resume() (en-US)

Resumes a paused download.

downloads.cancel() (en-US)

Cancels a download.

downloads.getFileIcon() (en-US)

Retrieves an icon for the specified download.

downloads.open() (en-US)

Opens the downloaded file with its associated application.

downloads.show() (en-US)

Opens the platform's file manager application to show the downloaded file in its containing folder.

downloads.showDefaultFolder() (en-US)

Opens the platform's file manager application to show the default downloads folder.

downloads.erase() (en-US)

Erases matching DownloadItems (en-US) from the browser's download history, without deleting the downloaded files from disk.

downloads.removeFile() (en-US)

Removes a downloaded file from disk, but not from the browser's download history.

downloads.acceptDanger() (en-US)

Prompts the user to accept or cancel a dangerous download.

downloads.drag()

Initiates dragging the downloaded file to another application.

downloads.setShelfEnabled() (en-US)

Enables or disables the gray shelf at the bottom of every window associated with the current browser profile. The shelf will be disabled as long as at least one extension has disabled it.

Events

downloads.onCreated (en-US)

Fires with the DownloadItem (en-US) object when a download begins.

downloads.onErased (en-US)

Fires with the downloadId when a download is erased from history.

downloads.onChanged (en-US)

When any of a DownloadItem (en-US)'s properties except bytesReceived changes, this event fires with the downloadId and an object containing the properties that changed.

Совместимость с браузерами

BCD tables only load in the browser

Example extensions

Примечание: Это API основано на API Chromium chrome.downloads.