# Google Chromeの開発者ツールに出てくる「[Deprecation] chrome.loadTimes() is deprecated」に関して URL: https://webrandum.net/deprecation-chrome-loadtimes-is-deprecated/ 公開日: 2019-07-03 更新日: 2020-04-12 カテゴリー: 作業効率化 タグ: Google Chrome, エラー 出典: Webrandum(著者: サイトウ マサカズ) Google Chromeで開発者ツールを開くと、突然下記のエラーが2件出てきました。 ``` [Deprecation] chrome.loadTimes() is deprecated, instead use standardized API: nextHopProtocol in Navigation Timing 2. ``` ![[Deprecation] chrome.loadTimes() is deprecated, instead use standardized API: nextHopProtocol in Navigation Timing 2.](https://webrandum.net/mskz/wp-content/uploads/2019/07/image_1-2-1024x302.png) ## アラート内容 このアラートの内容は、chrome.loadTimes()が非推奨になったため、代わりにNavigation Timing 2を使うようにしましょう。というものです。 詳しい内容は[こちら](https://developers.google.com/web/updates/2017/12/chrome-loadtimes-deprecated)をご覧ください。 [![](https://www.google.com/s2/favicons?domain=developers.google.com)Google Developers![](//webrandum.net/mskz/wp-content/uploads/pz-linkcard/cache/f94f58aa4b698702576345ae44034e4b9b7a6e27f7c5f9101b60858b2d90569b.webp)Chrome 64 to deprecate the chrome.loadTimes() API  |  Web &nbs...https://developers.google.com/web/updates/2017/12/chrome-loadtimes-deprecatedThe non-standard chrome.loadTimes() API will be deprecated in Chrome 64 now that standards-based equivalents exist for all of its useful features.](https://developers.google.com/web/updates/2017/12/chrome-loadtimes-deprecated) また、このアラートが表示される多くの場合は拡張機能が原因のようです。 そのため、アラートが表示されてもサイト自体に問題はないのですが、気になる人は拡張機能を停止にしておきましょう。 ## 拡張機能を特定する 開発者ツールの「content.js:4」「content.js:5」と書かれた部分にマウスホバーをすると、「chrome-extension://〇〇〇〇〇〇/content.js」と表示されます。 〇〇〇〇〇〇の部分は小文字のアルファベットの羅列となっています。 あとは、Finderで下記のパスのフォルダを開いて、その拡張機能が何なのか推測します。 ``` /Users/(ユーザ名)/Library/Application Support/Google/Chrome/Default/Extensions/〇〇〇〇〇〇 ``` ちなみに自分の場合は[HTTP/2 and SPDY indicator](https://chrome.google.com/webstore/detail/http2-and-spdy-indicator/mpbpobfflnpcgagjijhmgnchggcjblin)という、HTTP/2に対応しているかどうか確認する拡張機能が原因でした。 [![](https://www.google.com/s2/favicons?domain=chrome.google.com)chrome.google.com![](//webrandum.net/mskz/wp-content/uploads/pz-linkcard/cache/625d8d1bc1e022b72476a95229bffba55dc6277833a091b34ced86e3c53cd1c0.webp)HTTP/2 and SPDY indicatorhttps://chrome.google.com/webstore/detail/http2-and-spdy-indicator/mpbpobfflnpcgagjijhmgnchggcjblinAn indicator button for HTTP/2, SPDY and QUIC support by each website.](https://chrome.google.com/webstore/detail/http2-and-spdy-indicator/mpbpobfflnpcgagjijhmgnchggcjblin)