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.
How do I add extra files (in my case, .css file) to a userscript in here?
Re: @brunoaissgmail.com:
Only
user.js
and.js
files are currently hosted... anything else you may use@require
and/or@resource
in your metadata block pointing to a data URI or elsewhere on the web, or embed into your source code. Please note there is currently a maximum size of approximately 500KiB script size... so best to use the metadata block to point elsewhere.I use the Marti solution with the help of its GM_setStyle.js for this script:
Userstyles TableView+Enhancer - Dark/Grey
I post my CSS to Pastebin (by example for this script: http://pastebin.com/raw.php?i=kJw7adkj)
and add into my userscript header:
// @require https://greasyfork.org/libraries/GM_setStyle/0.0.15/GM_setStyle.js // @resource http://pastebin.com/raw.php?i=kJw7adkj // @grant GM_getResourceText
after i use this code:
let styleNode = GM_setStyle({ data: GM_getResourceText("css")