Find website used fonts

Find and list all the fonts used on a web page

什么是Find website used fonts?

Find website used fonts是由Rebekah Bailey开发的Chrome扩展程序,该扩展的主要功能是“Find and list all the fonts used on a web page”。

扩展截图

screenshot
screenshot
screenshot
screenshot

下载Find website used fonts扩展crx文件

下载Find website used fonts扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        Curious about the font styles used on a website?

Find website used fonts offers the simplest and easiest way to identify fonts on website. Simply click the extension and find together a list of all the fonts used on a web page.

The extension acts as a font inspector and accurately assesses all the different fonts used on any website you visit. The Best Feature: it provides a type-in space for you to preview any text in the same font styles as the ones identified on a web page. It’s that simple and easy to use!

This Chrome extension is quite handy for all the web developers and designers out-there searching for stunning web design ideas and attention-grabbing fonts. It allows them a preview of their text in the same style as the font that catches their attention from any trendy websites of their liking.                    

扩展基本信息

名称 Find website used fonts Find website used fonts
ID lnebjgioddkafaldaaeooeghlcholnnp
官方URL https://chrome.google.com/webstore/detail/lnebjgioddkafaldaaeooeghlcholnnp
简介 Find and list all the fonts used on a web page
文件大小 64.23 KB
安装次数 59,551
当前版本 2.0.2
更新时间 2022-09-24
上架时间 2020-11-30
评分 4.84/5 共96次评分
开发者 Rebekah Bailey
电子邮箱 [email protected]
付费类型 free
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Find website used fonts",
    "description": "Find and list all the fonts used on a web page",
    "version": "2.0.2",
    "icons": {
        "16": "icons\/icon16.png",
        "19": "icons\/icon19.png",
        "32": "icons\/icon32.png",
        "38": "icons\/icon38.png",
        "48": "icons\/icon48.png",
        "96": "icons\/icon96.png",
        "128": "icons\/icon128.png",
        "256": "icons\/icon256.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "javascripts\/libraries\/Font-Guess\/font-guess.js",
                "javascripts\/content.js"
            ],
            "run_at": "document_start"
        },
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "content-scripts\/idle.js"
            ],
            "all_frames": true,
            "run_at": "document_idle"
        },
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "content-scripts\/start.js"
            ],
            "all_frames": true,
            "run_at": "document_start"
        }
    ],
    "background": {
        "persistent": true,
        "scripts": [
            "javascripts\/background.js"
        ]
    },
    "browser_action": {
        "default_title": "Find Font",
        "default_popup": "popup\/popup.html"
    },
    "web_accessible_resources": [
        "modal\/modal.html",
        "modal\/modal.css",
        "modal\/tooltip.css"
    ],
    "permissions": [
        "*:\/\/*\/*",
        "tabs",
        "storage",
        "activeTab",
        "webRequest",
        "webRequestBlocking"
    ]
}