Are you sure you want to go to an external site to donate a monetary value?
WARNING: Some countries laws may supersede the payment processors policy such as the GDPR and PayPal. While it is highly appreciated to donate, please check with your countries privacy and identity laws regarding privacy of information first. Use at your utmost discretion.
On the line 85:
Original:
var filename = filedetails.title + ' (' + publishedfileid + ').json';
Greasemonkey on Firefox 43.0.3 was complaining about unknown
publishedfileid
variable.Changing it to following fixed it for me:
var filename = filedetails.title + ' (' + filedetails.publishedfileid + ').json';
Thanks for great script :)