Answers for "download chrome extension separately and then add to chrome"

0

download chrome extension separately and then add to chrome

Fast-forward 3 years, and now Google Chrome offers chrome.downloads API (since 
Chrome 31).

After declaring "downloads" permission in the manifest, one can initiate a 
download with this call:

chrome.downloads.download({
  url: "http://your.url/to/download",
  filename: "suggested/filename/with/relative.path" // Optional
});
Posted by: Guest on December-13-2020

Code answers related to "download chrome extension separately and then add to chrome"

Browse Popular Code Answers by Language