Fontanello

A browser extension that lets you display the basic typographic styles of a text by right-clicking it.

什么是Fontanello?

Fontanello是由Fred Bergman开发的Chrome扩展程序,该扩展的主要功能是“A browser extension that lets you display the basic typographic styles of a text by right-clicking it.”。

扩展截图

screenshot
screenshot
screenshot

下载Fontanello扩展crx文件

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

扩展使用说明

                        Fontanello makes it super easy to inspect typography on a webpage. It will show you information about typeface, weight, size, color and some other less used CSS-properties. It also show information about contrast for selected text.                    

扩展基本信息

名称 Fontanello Fontanello
ID jdlhfjlpaijjhklfadlhbbmpjfddkglc
官方URL https://chromewebstore.google.com/detail/fontanello/jdlhfjlpaijjhklfadlhbbmpjfddkglc
简介 A browser extension that lets you display the basic typographic styles of a text by right-clicking it.
文件大小 8.85 KB
安装次数 70,000
当前版本 1.2.2
更新时间 2021-05-02
上架时间 2020-02-22
评分 4.50/5 共38次评分
开发者 Fred Bergman
电子邮箱 [email protected]
付费类型 free
扩展官网 https://fontanello.app/
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Fontanello",
    "version": "1.2.2",
    "description": "A browser extension that lets you display the basic typographic styles of a text by right-clicking it.",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "permissions": [
        "activeTab",
        "contextMenus"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "client.js"
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ],
    "minimum_chrome_version": "45",
    "manifest_version": 2,
    "icons": {
        "16": "icons\/16.png",
        "32": "icons\/32.png",
        "48": "icons\/48.png",
        "128": "icons\/128.png"
    }
}