You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
functionwasFetchedViaSpdy(){// SPDY is deprecated in favor of HTTP/2, but this implementation returns// true for HTTP/2 or HTTP2+QUIC/39 as well.if(window.PerformanceNavigationTiming){constntEntry=performance.getEntriesByType('navigation')[0];return['h2','hq'].includes(ntEntry.nextHopProtocol);}}
[Deprecation] chrome.loadTimes() is deprecated, instead use standardized API: nextHopProtocol in Navigation Timing 2. https://www.chromestatus.com/features/5637885046816768.
SPDY @ chrome-extension://****/js/detector.js:393
Although it's a warning message, the extension doesn't work normally.
I found this page may be helpful (Chrome 64 to deprecate the chrome.loadTimes() API).
The text was updated successfully, but these errors were encountered: