pause a download with chrome doesnt work as expected

半腔热情 提交于 2021-01-27 21:39:51

问题


I am trying to puase a download but it doesnt work, the file is downloaded. here my code:

In my background script:

chrome.downloads.onCreated.addListener(function (e) {
    chrome.downloads.pause(e.id);
});

Here chrome.downloads.pause the API documentation

来源:https://stackoverflow.com/questions/63500467/pause-a-download-with-chrome-doesnt-work-as-expected

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!