Replies: 1 comment 4 replies
-
https://github.com/cefsharp/CefSharp/wiki/General-Usage#request-interception |
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I want to implement a functionality where I open an HTML webpage, and the HTML content contains the string "hello world". Now, I want to replace this string with "hello cefsharp" before the HTML resource is displayed on the screen. I don't want to use JavaScript injection.
Below is the code I have implemented using IResponseFilter, but it throws an error when the length of
dataBytes
is greater than 65536. I'm not sure how to resolve this issue. Is there a better way to achieve this?Beta Was this translation helpful? Give feedback.
All reactions