(Please fill out the issue template with your details)
I was trying to download some blob object, but GM_donwload doesn't work.
// ==UserScript==
// @name MyName
// @namespace http://mywebsite.com
// @Version 1.0
// @description try to take over the world!
// @author Me
// @match http://mywebsite.com/*
// @require http://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js
// @include https://mywebsite.com/*
// @grant GM_download
// ==/UserScript==
let text = "String";
let data = new Blob([text],{type:'text/plain'});
let arg = {
url: URL.createObjectURL(data),
name: "textInfo.txt",
saveAs: true,
}
GM_download(arg)
An additional info:
The GM_download API was worked fine with Edge browser.
I also have this problem.
Should be fixed at TM BETA 4.11.6113 (https://www.tampermonkey.net/index.php?browser=firefox)
Most helpful comment
Should be fixed at TM BETA 4.11.6113 (https://www.tampermonkey.net/index.php?browser=firefox)