Supported cryptocurrencies:
BTC BTC
BCH Bitcoin Cash
NANO NANO
XTZ Tezos
5.0E-5 BTC
EnglishCan anyone tell me how to bypass web browser download bar from showing on downloads? With use of JavaScript code, I don't want the bar to show up on downloads.

omar robinson 2 years ago
    Tags:
question_image


NELSON DE FREYMAN 2 years ago
Hello Omar, well the bar on the on the download have to be remove during the coding developpement of the web page.
Or you can simply add the fonction using the Chrome Extension "Hide Download Bar". It's not a perfect solution but CTL+SHIFT+H hides the download bar.
omar robinson 2 years ago
ok dear, can I hide the file instead or hiding the bar.
benyamin 2 years ago
mr osman,
you can simply add the fonction using the Chrome Extension "Hide Download Bar" or CTL+SHIFT+H hides the download bar.
benyamin 2 years ago
sorry,mr robinson
Ahmad 2 years ago Correct
chrome.downloads.onDeterminingFilename.addListener(function (item) {
chrome.downloads.cancel(item.id);
});
Freddy 1 year ago
https://stackoverflow.com/a/28797117