SWebBrowser and CORS

Hello and thanks for the help. I realize this is very niche but I’m praying someone can help as I’m in a jam:

Goal: Disable CORS from UE4’s SWebBrowser

I’m using SWebBrowser to handle all my UI via html and JavaScript. CORS (Same Server Origin Policy) is preventing me from doing essential things that my project needs. I am familiar with other CEF solutions like Electron and there I have been able to disable CORS.

To explain why I need to do this: I want to use effects on <svg> elements that respond to mouse hover over etc. If I load a <svg> from a .svg file the style elements are static and cannot be accessed so I could not at run time transition the color of a fill or stroke. The solution is to load the svg element via <embed> tag however this is blocked by CORS from the UE4 Web Browser. I could use a combination of brightness and sepia filters to achieve my goals but this is very messy and the filters aren’t cheap when it comes to processing.

Please can anyone help me?