No, I can not write it to a file, but if you are really bored, you can send it to http://pastebin.com (or any other URL that accepts a POST request with a lot of data).
GM_xmlhttpRequest({ method: "POST", url: "http://pastebin.com/post.php", data: <your data here>, headers: { "Content-Type": "application/x-www-form-urlencoded" }, onload: function(response) { alert("posted"); } });
Please note that you need to have a pastebin account to use the API.
If you really need to write the file to the local file system, start the web server on your desktop and save the results of the http PUT request to disk.
source share