Fontanello

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

Wat is Fontanello?

Fontanello is een Chrome-extensie ontwikkeld door Fred Bergman, en de belangrijkste functie is "A browser extension that lets you display the basic typographic styles of a text by right-clicking it.".

Extensie Screenshots

screenshot
screenshot
screenshot

Download het CRX-bestand van de extensie Fontanello

Download Fontanello-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Fontanello Fontanello
ID jdlhfjlpaijjhklfadlhbbmpjfddkglc
Officiële URL https://chromewebstore.google.com/detail/fontanello/jdlhfjlpaijjhklfadlhbbmpjfddkglc
Beschrijving A browser extension that lets you display the basic typographic styles of a text by right-clicking it.
Bestandsgrootte 8.85 KB
Aantal Installaties 70,000
Huidige Versie 1.2.2
Laatst Bijgewerkt 2021-05-02
Publicatiedatum 2020-02-22
Beoordeling 4.50/5 Totaal 38 Beoordelingen
Ontwikkelaar Fred Bergman
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://fontanello.app/
Ondersteunde Talen 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"
    }
}