Tôi đang sử dụng proxy gỡ lỗi Fiddler và mã bên dưới có thể chặn dữ liệu của máy chủ (YouTube) và sửa đổi thông tin HTML trước khi đến máy khách (trình duyệt web của tôi).
if (oSession.HostnameIs("www.youtube.com") && oSession.oResponse.headers.ExistsAndContains("Content-Type","text/html")){
oSession.utilDecodeResponse();
oSession.utilReplaceInResponse("old string","new string");
}
Bây giờ, tôi muốn thay thế / ẩn từ dolphin
khỏi http://www.youtube.com/results?search_query=dolphin
& page = 3. Làm thế nào tôi có thể đạt được điều này?
Cảm ơn bạn