-
Notifications
You must be signed in to change notification settings - Fork 32
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Downloading is not working on Firefox. #64
Comments
Thanks! Add an if statment to sort between jpg and mp4.. if (url.contains("mp4")) { |
Don't add me. |
Confirmed. With CORS mode, at least Firefox seems to be like this. "User-agent header is only permitted for CORS when the server has opted in with "Access-Control-Allow-Headers: user-agent"" Haven't checked Chrome, but I would assume it's similar. |
The fetch method to download file is not working for Firefox (cors problem most of the time).
A better way is to use the tampermonkey downloader. Simply add @grant GM_download to script headers then change the function downloadResource by GM_download(url,filename+".mp4")
GM_download is done with webext. So no cross-origin problem.
I have to fix the script at every update 😅
The text was updated successfully, but these errors were encountered: