Where to see font files loaded by chrome in the inspector?

Google ChromeFontsFont FaceWeb Inspector

Google Chrome Problem Overview


What tab in chrome inspector shows the font files you're loading via font-face? I can't find it under resources. I'm having an issue where one group of font-family files are loading, but another font-family is not. I have checked everything from going directly to the URL and seeing they are indeed present, but I would like to look in the inspector and see it loading the one font-family but not the other. Is this possible with chrome?

Google Chrome Solutions


Solution 1 - Google Chrome

You can also select any text node in the elements panel, then look at the bottom of the computed styles tab to see what fonts are rendered for that element

Google Chrome styles tab showing computed rendered fonts

Solution 2 - Google Chrome

You can view the downloaded web fonts using the Network tab:

Google Chrome Network tab showing downloaded web fonts

Solution 3 - Google Chrome

The best way so far

You can actaully do rightclick: inspect > Application (on the top tabs) > Frames (scroll on the left tabs) Then you can find a Font section where all loaded fonts are listed. It lists all fonts that are loaded in any possible secure way.

The best part is that, It also previews them on the right, to make it even easier to find the one

Application tab

Then you can right-click on the one you chose and click open in a new tab, and it downloads it. Then you can add a .woff at the end of the filename and use it anywhere you like. (you can get its extension on the bottom of the preview too)

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
Questiono_OView Question on Stackoverflow
Solution 1 - Google ChromecfgView Answer on Stackoverflow
Solution 2 - Google ChromeAdriftView Answer on Stackoverflow
Solution 3 - Google ChromeAbrahamView Answer on Stackoverflow