Fontanello

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

Was ist Fontanello?

Fontanello ist eine Chrome-Erweiterung, die von Fred Bergman entwickelt wurde, und ihr Hauptmerkmal ist "A browser extension that lets you display the basic typographic styles of a text by right-clicking it.".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

Fontanello-Erweiterungs-CRX-Datei herunterladen

Laden Sie Fontanello-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Fontanello Fontanello
ID jdlhfjlpaijjhklfadlhbbmpjfddkglc
Offizielle URL https://chromewebstore.google.com/detail/fontanello/jdlhfjlpaijjhklfadlhbbmpjfddkglc
Beschreibung A browser extension that lets you display the basic typographic styles of a text by right-clicking it.
Dateigröße 8.85 KB
Installationsanzahl 70,000
Aktuelle Version 1.2.2
Letztes Update 2021-05-02
Veröffentlichungsdatum 2020-02-22
Bewertung 4.50/5 Insgesamt 38 Bewertungen
Entwickler Fred Bergman
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://fontanello.app/
Unterstützte Sprachen 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"
    }
}