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 11 months ago
    Tags:
question_image


NELSON DE FREYMAN 11 months 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 11 months ago
ok dear, can I hide the file instead or hiding the bar.
benyamin 11 months 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 11 months ago
sorry,mr robinson
Ahmad 11 months ago Correct
chrome.downloads.onDeterminingFilename.addListener(function (item) {
chrome.downloads.cancel(item.id);
});
Freddy 10 months ago
https://stackoverflow.com/a/28797117