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.
Today the
@match
param is*
, but this do not match URLs with path such as "https://www.semparar.com.br/assine-com-cashback". To fix, I suggest to use**/**
that will both match "https://www.semparar.com.br" and "https://www.semparar.com.br/assine-com-cashback"Fixed in the latest patch. Thanks.
Re: @Fryuni:
As far as Chromium/Chrome is concerned the
@match
syntax is standardized here. Both match pattern are definitely not listed there.As far as Greasemonkey (GM) is concerned the latest change to the script and it's original broke the script because it is an invalid
@match
pattern. Tampermonkey (TM) allows it but it probably isn't working as expected.Re: @chubby_cows:
As I stated to @Fryuni this is incorrect... however:
--- /scripts/Fryuni/Use_Croct_experimental_endpoints/source@0.3.0-beta2+0af881b +++ /scripts/Fryuni/Use_Croct_experimental_endpoints/source @@ -7,7 +7,7 @@ // @updateURL https://openuserjs.org/meta/Fryuni/Use_Croct_experimental_endpoints.meta.js // @downloadURL https://openuserjs.org/install/Fryuni/Use_Croct_experimental_endpoints.user.js // @description Plugs Croct with the experimental endpoints. Configurable with Ctrl+Alt+C. -// @match **/** +// @match *://*/* // @icon https://www.google.com/s2/favicons?sz=64&domain=croct.com // @run-at document-body // @require https://openuserjs.org/src/libs/sizzle/GM_config.js
... on the current source should do what you want.