Is making CORS errors history. Send requests from client-side without running into CORS errors. Plus you can use a custom referer.

EASY TO USE

Just request the current URL with "cmaurl"-Header set to url you want to cors your ass. If desired you can also add the "cmareferer"-Header to your request. It just takes the referer you want the requested site to think the request is coming from.

Example

XMLHttpRequest

var http_request = new XMLHttpRequest();
http_request.open('GET', 'https://cma.freye.tech?param=value');
http_request.setRequestHeader("cmareferer", "https://comingfromthissite.not");
http_request.setRequestHeader("cmaurl", "https://pageiwanttocma.com")
http_request.send();