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.
Greetings!
Here is a JS code that would allow ruffle to load SWF on a given page which has SWF embedded.
(function() { // The @require directive will automatically load Ruffle, so no further action is needed. 'use strict'; // The following code is used as a backup system. let ruffleScript = document.createElement('script'); // Use the CDN version of Ruffle ruffleScript.src = 'https://unpkg.com/@ruffle-rs/ruffle'; document.head.appendChild(ruffleScript); })();
It would be good to know how to make that code to work as userscript, loading the ruffle library from metablock
// @require https://unpkg.com/@ruffle-rs/ruffle/ruffle.js
Thank you for any help!