Fryuni / Use Croct experimental endpoints

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:

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"

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.