Fontanello

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

What is Fontanello?

Fontanello is a Chrome extension developed by Fred Bergman, and its main feature is "A browser extension that lets you display the basic typographic styles of a text by right-clicking it.".

Extension Screenshots

screenshot
screenshot
screenshot

Download Fontanello Extension CRX File

Download Fontanello extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Fontanello Fontanello
ID jdlhfjlpaijjhklfadlhbbmpjfddkglc
Official URL https://chromewebstore.google.com/detail/fontanello/jdlhfjlpaijjhklfadlhbbmpjfddkglc
Description A browser extension that lets you display the basic typographic styles of a text by right-clicking it.
File Size 8.85 KB
Installation Count 70,000
Current Version 1.2.2
Last Updated 2021-05-02
Publish Date 2020-02-22
Rating 4.50/5 Total 38 Ratings
Developer Fred Bergman
Email [email protected]
Payment Type free
Extension Website https://fontanello.app/
Supported Languages 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"
    }
}