Posts: 40
Threads: 5
Joined: Jul 2015
Data compression proxy doesn't work at all. As data saver too. I have tried it on many sites and nothing. Just sites showing error and doesn't load at all. Can you fix compatibility of your browser with that extensions? Cause on comodo browser and chromodo it's working as many other's too.
Posts: 6,199
Threads: 90
Joined: Oct 2014
Thanks for your feedback.
It is really a bug.Google's data compression server needs authentication, which is lacked in Chromium.
Already fixed.
Posts: 40
Threads: 5
Joined: Jul 2015
Thank you very much. Will try it today. Cause i saw that you are released new version. Also time to time extension from adguard.com take huge memory capacity. On youtube time to time take 700mb per tab.
Posts: 6,199
Threads: 90
Joined: Oct 2014
It is heard that uBlock is a good light-weight ad blocker.
Posts: 40
Threads: 5
Joined: Jul 2015
(08-27-2015, 07:05 PM)CentBrowser Wrote: It is heard that uBlock is a good light-weight ad blocker.
![Sick Sick](https://www.centbrowser.net/en/images/smilies/sick.png)
Nope it's not.
Posts: 6,199
Threads: 90
Joined: Oct 2014
Does the data compression proxy work in the latest version?
Posts: 40
Threads: 5
Joined: Jul 2015
Yeah working fine. But how did you do that? Can you tell me please. Cause i wanna tell that to Vivaldi support. They don't know how to fix it.
Posts: 6,199
Threads: 90
Joined: Oct 2014
Google's data compression server needs authentication.Authentication string should be provided in google_api_keys.cc
Code:
std::string GetSpdyProxyAuthValue() {
return "ac4500dd3b7579186c1b0620614fdb1f7d61f944";
/*
#if defined(SPDY_PROXY_AUTH_VALUE)
return SPDY_PROXY_AUTH_VALUE;
#else
return std::string();
#endif
*/
}
And the returned version should be correct Chromium version in data_reduction_proxy_request_options.cc
Code:
std::string DataReductionProxyRequestOptions::ChromiumVersion() const {
return "44.0.2403.157";
/*
#if defined(PRODUCT_VERSION)
return PRODUCT_VERSION;
#else
return std::string();
#endif
*/
}
Posts: 40
Threads: 5
Joined: Jul 2015
(09-25-2015, 06:22 AM)CentBrowser Wrote: Google's data compression server needs authentication.Authentication string should be provided in google_api_keys.cc
Code:
std::string GetSpdyProxyAuthValue() {
return "ac4500dd3b7579186c1b0620614fdb1f7d61f944";
/*
#if defined(SPDY_PROXY_AUTH_VALUE)
return SPDY_PROXY_AUTH_VALUE;
#else
return std::string();
#endif
*/
}
And the returned version should be correct Chromium version in data_reduction_proxy_request_options.cc
Code:
std::string DataReductionProxyRequestOptions::ChromiumVersion() const {
return "44.0.2403.157";
/*
#if defined(PRODUCT_VERSION)
return PRODUCT_VERSION;
#else
return std::string();
#endif
*/
}
Can i do it by myself on SlimJet or on Vivaldi qand where is i can find that file and how to compile code? Please can you explain?
Posts: 6,199
Threads: 90
Joined: Oct 2014
Of course, no, except you compile your own Chromium.
http://dev.chromium.org/developers/how-tos/get-the-code
https://www.chromium.org/developers/how-...ns-windows
They should apply these changes to their source code, and release an updated version.