This is a very helpfull crate. But I want to intercept all network requests that sending from the browser. And want to redirect all requests for a specific URL after adding some additional HTTP headers.
Expected:-
browser.set_interception(|data|{
let response = make_request(data);
InterceptDecision::Response(response);
})
This feature is already implemented in rust-headless-chrome.
This is a very helpfull crate. But I want to intercept all network requests that sending from the browser. And want to redirect all requests for a specific URL after adding some additional HTTP headers.
Expected:-
This feature is already implemented in rust-headless-chrome.